VC++计算器的制作

时间:2012-10-29 07:48:50
【文件属性】:

文件名称:VC++计算器的制作

文件大小:210B

文件格式:CPP

更新时间:2012-10-29 07:48:50

VC++

void CComputesDlg::OnButton1() { // TODO: Add your control notification handler code here int num1,num2,num3; char ch1[10],ch2[10],ch3[10]; GetDlgItem(IDC_EDIT1)->GetWindowText(ch1,10); GetDlgItem(IDC_EDIT2)->GetWindowText(ch2,10); num1=atoi(ch1); num2=atoi(ch2); num3=num1+num2; itoa(num3,ch3,10); GetDlgItem(IDC_EDIT3)->SetWindowText(ch3); }


网友评论