C++ mfc做计算器 具体步骤 急!!!!

最好有源代码!!!
shenjn@qq.com

1.首先做计算器界面类,界面上要用0-9, +,-,*,/,=等(复杂点还可以做的和XP一样的科学计算器)
2.添加计算逻辑,每个按建点下后,在输出栏的显示

我这里有源代码,你如果要请提供邮箱
附部分核心代码:
1.首先做计算器界面类,界面上要用0-9, +,-,*,/,=等(复杂点还可以做的和XP一样的科学计算器)
2.添加计算逻辑,每个按建点下后,在输出栏的显示

我这里有源代码,你如果要请提供邮箱
附部分核心代码:

void CCalDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CCalDlg)
DDX_Control(pDX, IDC_BUTTON_9, m_Button9);
DDX_Control(pDX, IDC_BUTTON_8, m_Button8);
DDX_Control(pDX, IDC_BUTTON_7, m_Button7);
DDX_Control(pDX, IDC_BUTTON_6, m_Button6);
DDX_Control(pDX, IDC_BUTTON_5, m_Button5);
DDX_Control(pDX, IDC_BUTTON_4, m_Button4);
DDX_Control(pDX, IDC_BUTTON_3, m_Button3);
DDX_Control(pDX, IDC_BUTTON_27, m_ButtonLog);
DDX_Control(pDX, IDC_BUTTON_26, m_ButtonLn);
DDX_Control(pDX, IDC_BUTTON_25, m_ButtonExp);
DDX_Control(pDX, IDC_BUTTON_24, m_ButtonPow);
DDX_Control(pDX, IDC_BUTTON_23, m_ButtonCub);
DDX_Control(pDX, IDC_BUTTON_22, m_ButtonSqu);
DDX_Control(pDX, IDC_BUTTON_21, m_ButtonTan);
DDX_Control(pDX, IDC_BUTTON_20, m_ButtonCos);
DDX_Control(pDX, IDC_BUTTON_2, m_Button2);
DDX_Control(pDX, IDC_BUTTON_19, m_ButtonSin);
DDX_Control(pDX, IDC_BUTTON_18, m_ButtonReverse);
DDX_Control(pDX, IDC_BUTTON_17, m_ButtonSqrt);
DDX_Control(pDX, IDC_BUTTON_16, m_ButtonClear);
DDX_Control(pDX, IDC_BUTTON_15, m_ButtonDiv);
DDX_Control(pDX, IDC_BUTTON_14, m_ButtonMul);
DDX_Control(pDX, IDC_BUTTON_13, m_ButtonSub);
DDX_Control(pDX, IDC_BUTTON_12, m_ButtonAdd);
DDX_Control(pDX, IDC_BUTTON_11, m_ButtonEqu);
DDX_Control(pDX, IDC_BUTTON_10, m_ButtonPoint);
DDX_Control(pDX, IDC_BUTTON_1, m_Button1);
DDX_Control(pDX, IDC_BUTTON_0, m_Button0);
DDX_Control(pDX, IDC_EDIT1, m_DspEdit);
//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CCalDlg, CDialog)
//{{AFX_MSG_MAP(CCalDlg)
ON_WM_SYSCOMMAND()
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
ON_BN_CLICKED(IDC_BUTTON_0, OnButton0)
ON_BN_CLICKED(IDC_BUTTON_1, OnButton1)
ON_BN_CLICKED(IDC_BUTTON_11, OnButtonEqu)
ON_BN_CLICKED(IDC_BUTTON_12, OnButtonAdd)
ON_BN_CLICKED(IDC_BUTTON_10, OnButtonPoint)
ON_BN_CLICKED(IDC_BUTTON_13, OnButtonSub)
ON_BN_CLICKED(IDC_BUTTON_14, OnButtonMul)
ON_BN_CLICKED(IDC_BUTTON_15, OnButtonDiv)
ON_BN_CLICKED(IDC_BUTTON_16, OnButtonClear)
ON_BN_CLICKED(IDC_BUTTON_17, OnButtonSqrt)
ON_BN_CLICKED(IDC_BUTTON_18, OnButtonReverse)
ON_BN_CLICKED(IDC_BUTTON_19, OnButtonSin)
ON_BN_CLICKED(IDC_BUTTON_2, OnButton2)
ON_BN_CLICKED(IDC_BUTTON_20, OnButtonCos)
ON_BN_CLICKED(IDC_BUTTON_21, OnButtonTan)
ON_BN_CLICKED(IDC_BUTTON_22, OnButtonSqu)
ON_BN_CLICKED(IDC_BUTTON_23, OnButtonCub)
ON_BN_CLICKED(IDC_BUTTON_24, OnButtonPow)
ON_BN_CLICKED(IDC_BUTTON_25, OnButtonExp)
ON_BN_CLICKED(IDC_BUTTON_26, OnButtonLn)
ON_BN_CLICKED(IDC_BUTTON_27, OnButtonLog)
ON_BN_CLICKED(IDC_BUTTON_3, OnButton3)
ON_BN_CLICKED(IDC_BUTTON_4, OnButton4)
ON_BN_CLICKED(IDC_BUTTON_5, OnButton5)
ON_BN_CLICKED(IDC_BUTTON_6, OnButton6)
ON_BN_CLICKED(IDC_BUTTON_7, OnButton7)
ON_BN_CLICKED(IDC_BUTTON_8, OnButton8)
ON_BN_CLICKED(IDC_BUTTON_9, OnButton9)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

void CCalDlg::OnButton0()
{
// TODO: Add your control notification handler code here
if(m_Mark==0)
{
m_StrBegin=m_StrBegin+"0";
m_DspEdit.OnDisplay(m_StrBegin);
}
else
{
m_StrEnd=m_StrEnd+"0";
m_IsCheckPoint=0;
m_DspEdit.OnDisplay(m_StrEnd);
}
}

void CCalDlg::OnButton1()
{
// TODO: Add your control notification handler code here
if(m_Mark==0)
{
m_StrBegin=m_StrBegin+"1";
m_DspEdit.OnDisplay(m_StrBegin);
}
else
{
m_StrEnd=m_StrEnd+"1";
m_IsCheckPoint=0;
m_DspEdit.OnDisplay(m_StrEnd);
}
}

void CCalDlg::OnButtonEqu()
{
// TODO: Add your control notification handler code here
Result();

}

void CCalDlg::OnButtonAdd()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=1;
m_Mark=1;

}

void CCalDlg::OnButtonPoint()
{
// TODO: Add your control notification handler code here
if(m_Mark==0)
{

if(m_IsCheckPoint!=1&&m_StrBegin!="")
{
m_StrBegin=m_StrBegin+".";
m_IsCheckPoint=1;
}
}
else
{
if(m_IsCheckPoint!=1&&m_StrBegin!="")
{
m_StrEnd=m_StrEnd+".";
m_IsCheckPoint=1;
}
}

}

void CCalDlg::OnButtonSub()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=2;
m_Mark=1;

}

void CCalDlg::OnButtonMul()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=3;
m_Mark=1;

}

void CCalDlg::OnButtonDiv()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=4;
m_Mark=1;

}

void CCalDlg::OnButtonClear()
{
// TODO: Add your control notification handler code here
m_IsCheckPoint=0; //マ﨤ミ。ハオ羃エマツオトア・ヌ

m_StrBegin="";
m_StrEnd="";

m_Mark=0;
m_begin=0.0;
m_end=0.0;
m_bit=0;
m_DspEdit.OnDisplay("0.");
}

void CCalDlg::OnButtonSqrt()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=5;
m_Mark=1;

}

void CCalDlg::OnButtonReverse()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=6;
m_Mark=1;

}

void CCalDlg::OnButtonSin()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=8;
m_Mark=1;

}

void CCalDlg::OnButton2()
{
// TODO: Add your control notification handler code here
if(m_Mark==0)
{
m_StrBegin=m_StrBegin+"2";
m_DspEdit.OnDisplay(m_StrBegin);
}
else
{
m_StrEnd=m_StrEnd+"2";
m_IsCheckPoint=0;
m_DspEdit.OnDisplay(m_StrEnd);
}
}

void CCalDlg::OnButtonCos()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=9;
m_Mark=1;

}

void CCalDlg::OnButtonTan()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=10;
m_Mark=1;

}

void CCalDlg::OnButtonSqu()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=11;
m_Mark=1;

}

void CCalDlg::OnButtonCub()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=12;
m_Mark=1;

}

void CCalDlg::OnButtonPow()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=13;
m_Mark=1;

}

void CCalDlg::OnButtonExp()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=14;
m_Mark=1;

}

void CCalDlg::OnButtonLn()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=15;
m_Mark=1;

}

void CCalDlg::OnButtonLog()
{
// TODO: Add your control notification handler code here
m_begin=atof(m_StrBegin);
m_bit=16;
m_Mark=1;

}

void CCalDlg::OnButton3()
{
// TODO: Add your control notification handler code here
if(m_Mark==0)
{
m_StrBegin=m_StrBegin+"3";
m_DspEdit.OnDisplay(m_StrBegin);
}
else
{
m_StrEnd=m_StrEnd+"3";
m_IsCheckPoint=0;
m_DspEdit.OnDisplay(m_StrEnd);
}
}

void CCalDlg::OnButton4()
{
// TODO: Add your control notification handler code here
if(m_Mark==0)
{
m_StrBegin=m_StrBegin+"4";
m_DspEdit.OnDisplay(m_StrBegin);
}
else
{
m_StrEnd=m_StrEnd+"4";
m_IsCheckPoint=0;
m_DspEdit.OnDisplay(m_StrEnd);
}
}

void CCalDlg::OnButton5()
{
// TODO: Add your control notification handler code here
if(m_Mark==0)
{
m_StrBegin=m_StrBegin+"5";
m_DspEdit.OnDisplay(m_StrBegin);
}
else
{
m_StrEnd=m_StrEnd+"5";
m_IsCheckPoint=0;
m_DspEdit.OnDisplay(m_StrEnd);
}
}

void CCalDlg::OnButton6()
{
// TODO: Add your control notification handler code here
if(m_Mark==0)
{
m_StrBegin=m_StrBegin+"6";
m_DspEdit.OnDisplay(m_StrBegin);
}
else
{
m_StrEnd=m_StrEnd+"6";
m_IsCheckPoint=0;
m_DspEdit.OnDisplay(m_StrEnd);
}
}

void CCalDlg::OnButton7()
{
// TODO: Add your control notification handler code here
if(m_Mark==0)
{
m_StrBegin=m_StrBegin+"7";
m_DspEdit.OnDisplay(m_StrBegin);
}
else
{
m_StrEnd=m_StrEnd+"7";
m_IsCheckPoint=0;
m_DspEdit.OnDisplay(m_StrEnd);
}
}

void CCalDlg::OnButton8()
{
// TODO: Add your control notification handler code here
if(m_Mark==0)
{
m_StrBegin=m_StrBegin+"8";
m_DspEdit.OnDisplay(m_StrBegin);
}
else
{
m_StrEnd=m_StrEnd+"8";
m_IsCheckPoint=0;
m_DspEdit.OnDisplay(m_StrEnd);
}
}

void CCalDlg::OnButton9()
{
// TODO: Add your control notification handler code here
if(m_Mark==0)
{
m_StrBegin=m_StrBegin+"9";
m_DspEdit.OnDisplay(m_StrBegin);
}
else
{
m_StrEnd=m_StrEnd+"9";
m_IsCheckPoint=0;
m_DspEdit.OnDisplay(m_StrEnd);
}
}

void CCalDlg::Result()
{
m_end=atof(m_StrEnd); //ームハ菠・センラェササホェク。オ飜

switch(m_bit)
{
case 1:
m_end+=m_begin;
break;
case 2:
m_end=m_begin-m_end;
break;
case 3:
m_end=m_begin*m_end;
break;
case 4:
m_end=m_begin/m_end;
break;
case 5:
if(m_end<0)
{
m_DspEdit.OnDisplay("コッハハ菠・゙ミァ!");
break;
}
m_end=sqrt(m_end);
break;
case 6:
if(m_end==0)
{ m_DspEdit.OnDisplay("キヨトクハ菠・゙ミァ!");
break;
}
m_end=1.0/m_end;
break;

case 8:
m_end=sin(m_end);
break;
case 9:
m_end=cos(m_end);
break;
case 10:
m_end=tan(m_end);
break;
case 11:
m_end=m_end*m_end;
break;
case 12:
m_end=m_end*m_end*m_end;
break;
case 13:
m_end=pow(m_begin,m_end);
break;
case 14:
m_end=exp(m_end);
break;
case 15:
if(m_end<=0)
{
m_DspEdit.OnDisplay("コッハハ菠・゙ミァ!");
break;
}
m_end=log(m_end);
break;
case 16:
if(m_end<=0)
{
m_DspEdit.OnDisplay("コッハハ菠・゙ミァ!");
return;
}
m_end=log10(m_end);
break;
}

m_begin=m_end;
m_bit=0;

m_StrEnd="";

gcvt(m_end,15,m_buffer);
m_StrBegin=m_buffer;
m_DspEdit.SetSel(0,-1);
m_DspEdit.ReplaceSel(" ");
m_DspEdit.OnDisplay(m_buffer);
}
温馨提示:内容为网友见解,仅供参考
第1个回答  2010-07-20
Hi我,或email:lijiuning(a)gmail.com 我给你发
下面是部分源代码:

void CCalDlg::OnButton0()
{
// TODO: Add your control notification handler code here
if(m_Mark==0)
{
m_StrBegin=m_StrBegin+"0";
m_DspEdit.OnDisplay(m_StrBegin);
}
else
{
m_StrEnd=m_StrEnd+"0";
m_IsCheckPoint=0;
m_DspEdit.OnDisplay(m_StrEnd);
}
}

void CCalDlg::OnButton1()
{
// TODO: Add your control notification handler code here
if(m_Mark==0)
{
m_StrBegin=m_StrBegin+"1";
m_DspEdit.OnDisplay(m_StrBegin);
}
else
{
m_StrEnd=m_StrEnd+"1";
m_IsCheckPoint=0;
m_DspEdit.OnDisplay(m_StrEnd);
}
}
第2个回答  2010-07-20
已发送,有教程和源代码,是一本书上的本回答被提问者采纳
第3个回答  2010-07-20
我刚做了这个。。不知道用Qt做的啊要???。。。功能均已经实现。。。要可以hi我。。。

C++ mfc做计算器 具体步骤 急!!!
1.首先做计算器界面类,界面上要用0-9, +,-,*,\/,=等(复杂点还可以做的和XP一样的科学计算器)2.添加计算逻辑,每个按建点下后,在输出栏的显示我这里有源代码,你如果要请提供邮箱附部分核心代码:1.首先做计算器界面类,界面上要用0-9, +,-,*,\/,=等(复杂点还可以做的和XP一样的科学计算器)2.添加...

急:mfc编程,用C++写一个简易的计算器,有图形界面的..请求各位大虾给出详...
个人的程序步骤,参考下:1.新建一个对话框程序。2.添加计算器的各个按键及编辑框(用来显示输入和结果)3.为对话框添加一些变量:一个状态标志(计算加减乘除),一个标志(对运算两个数的哪个进行处理),两个double变量(用于运算的两个数),用类向导为编辑框绑定一个变量。定义一个计算函数(进行加减乘除...

MFC编写计算器具体步骤 方法 代码,拜托高手急用!
1、首先打开VS2013,新建一个VC++ MFC项目,命名为 gongzi。2、然后在程序类型中,选择“基于对话框”,点击“完成”按钮。3、然后在弹出的对话框中,删除原先的Static Text,添加相应的控件到窗体上。4、接着在应发工资编辑框右击添加变量。 变量名称是 m_editTotal, 变量类型是 double, 类别为 ...

怎么用c++mfc做一个加减乘除的 有三角函数的计算器?709207455谢谢_百度...
基于对话框,然后设计对话框按钮,然后给各个按钮设定函数,将对话框的字符串转化为double类型的数,这样才能进行运算

求一个mfc做计算器的详细步骤,谢谢
数字按钮+数字按钮的函数,然后如何得到按钮上的值的函数,并转换为整形,然后就做好相加,相减,相乘,相除公式算法~~最后一个等于按钮和等于按钮的函数,然后再把得出的值显示在编辑框中!!步骤在此啦~~一般详细了,但是怎么实现就需要你自己去查资料了!

关于C++中MFC制作计算器的问题!!!
x 这三个,把string 转化为double 类型,可以用atof 或者自己写函数处理。然后调用#include<math.h> 的数学函数直接处理。x! 把string转换为int . 再写阶乘的算法。编辑框关于变量的方法,课本就有,或者自己百度查查。http:\/\/zhidao.baidu.com\/question\/194587783.html 这个参考。

如何用VC++6.0 MFC 实现计算器
2015-09-17 用C++写一个有图形界面的计算器,用VC++6.0 MFC只... 1 2015-02-17 如何用vc++6.0制作简单的计算器 2 2015-06-03 用mfc编写一个计算器的计算机程序。用VC++6.0 2013-06-11 VC++6.0MFC计算器如何实现混合运算 2010-12-11 急急急!VC++6.0编写基于MFC的小游戏或简易计算器等 1 ...

用C++编写计算器
随时检测输入框edit中输入的内容,最多只能有一个小数点,首先按小数点时显示为“0.”另注意一些细节:连续操作,结果数如果有小数点,末尾为0的要全部消除0等等 实现:edit控件:增加控件变量:m_edit新建上述button 分别更改为:IDC_0...IDC_9, IDC_AC, IDC_C , IDC_CHU(除) , IDC_C(乘) ,...

C++程序设计,使用MFC编制基于对话框的Windows应用程序,设计一个购置...
车险计算公式:1.车辆损失险保费=基本保险费+本险种保险金额×费率 2.第三者责任险保费=固定档次赔偿限额对应的固定保险费 3.全车盗抢险保费=车辆实际价值×费率 4.新增加设备损失险保费=本险种保险金额×费率 5.玻璃单独破碎险保费=新车购置价×费率 6.自燃损失险保费=本险种保险金额×费率 7.车上...

VC++ MFC中,要怎么实现科学计算器的记忆功能呢?计算的基本功能都实现了...
使用CFile类的Read,Write函数读写文件。使用C++的 ofstream和ifstream读写文件也行。就是每点击一次计算按钮,就把使用到的那组数写入文件。

相似回答
大家正在搜