其他分享
首页 > 其他分享> > 20.实现简单的计算器

20.实现简单的计算器

作者:互联网

1.添加两个Edit Control、两个Static Text和一个ComBo Box;
如下图所示:
在这里插入图片描述
2.为ComBo Box添加变量,命名为mComBoCal;
3.在对话框的源文件的初始化函数中添加如下代码,在ComBo Box中添加内容;

mComBoCal.InsertString(0, _T("+"));//在ComBo中添加"+"运算
	mComBoCal.InsertString(1, _T("-"));//在ComBo中添加"-"运算
	mComBoCal.InsertString(2, _T("*"));//在ComBo中添加"*"运算
	mComBoCal.InsertString(3, _T("/"));//在ComBo中添加"/"运算

4.添加按钮,并在按钮中实现功能

int nums1 = GetDlgItemInt(IDC_EDIT1);//获取编辑框1的值
	int nums2 = GetDlgItemInt(IDC_EDIT2);//获取编辑框2的值
	int result=0;
	switch (mComBoCal.GetCurSel())//判断ComBo的索引
	{
	case 0:
		result = nums1 + nums2;
		break;
	case 1:
		result = nums1 - nums2;
		break;
	case 2:
		result = nums1 * nums2;
		break;
	case 3:
		result = nums1 / nums2;
		break;
	default:
		MessageBox(_T("输入运算符号:"));
		break;
	}

	SetDlgItemInt(IDC_STATIC_RESULT, result);

标签:20,mComBoCal,简单,添加,result,ComBo,nums1,nums2,计算器
来源: https://blog.csdn.net/sdsc1314/article/details/110573545