void CJSQDlg::On_shijinzhi()
{
int tmp;
float m;
char datacoverttemp[100];
newinput=TRUE;
if(datakind!=10)
m=coverttofloat(m_vfront,datakind);
else
m=atof(m_vfront);
tmp=int(m);
datakind=10;
m_vfront.Format("%f",m);
m_vfront.TrimRight("0");
m_vfront.TrimRight(".");
UpdateData(FALSE);
}
三角函数计算的实现:
void CJSQDlg::On_sin()
{
newinput=TRUE;
if(jiaodu==1)
{
UpdateData(true);
float temp=sin(atof(m_vfront));
m_vfront.Format("%f",temp);
m_vfront.TrimRight("0");
m_vfront.TrimRight(".");
}
else if(jiaodu==0)
{
float temp=sin(atof(m_vfront)*pi/180);
m_vfront.Format("%f",temp);
m_vfront.TrimRight("0");
m_vfront.TrimRight(".");
}
else
{
float temp=sin(atof(m_vfront)*pi/200);
m_vfront.Format("%f",temp);
m_vfront.TrimRight("0");
m_vfront.TrimRight(".");
}
UpdateData(FALSE);
}669