资源简介
用VC++做的MFC科学计算器,整个工程都已打包,内含代码,EXE文件等.在VC++ 6.0可以直接运行。
可以计算+/-,1/x,3√x,e^x,10^x,x^2,x^3,n!,sin,cos,tan,arcsin,arccos,arctan,sinh,cosh,tanh,arsh,arch,arth,ln,log,abs,Int,
+,-,*,/,y√x,x^y,logxY,nPr,nCr,mod等运算
代码片段和文件信息
// Calculator.cpp : Defines the class behaviors for the application.
#include “stdafx.h“
#include “Calculator.h“
#include “CalculatorDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCalculatorApp
BEGIN_MESSAGE_MAP(CCalculatorApp CWinApp)
//{{AFX_MSG_MAP(CCalculatorApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CCalculatorApp construction
CCalculatorApp::CCalculatorApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CCalculatorApp object
CCalculatorApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CCalculatorApp initialization
BOOL CCalculatorApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CCalculatorDlg dlg;
m_pMainWnd=&dlg;
int nResponse = dlg.DoModal();
if (nResponse==IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse==IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
- 上一篇:VC MFC实现橡皮筋类(鼠标拖动框选)
- 下一篇:吉大中心校区校园导游系统
相关资源
- VC MFC实现橡皮筋类(鼠标拖动框选)
- pl/0语言的编译器
- VC++实现小波变换
- VC6.0贪吃蛇MFC
- MFC编写文件传输
- C++MFC作业彩票机-模拟双色球
- VC++实现简单的用户登录系统ADO。包括
- VC++实现简单的用户登录系统,包括修
- MFC 绘图 键盘控制图片移动
- 使用MFC实现的扫雷
- 图书管理系统MFC版
- MFC 界面库Skin 破解版已用于实际项目
- 完整的图书管理系统MFC编写
- 基于MFC的简单的图书管理系统
- 图形学实验 多边形的扫描转换 扫面线
- 二叉排序树 建立 查询 删除
- opencv结合MFC进行人脸检测
- MFC TCP/IP 网络 多人聊天室
- MFC俄罗斯方块源码
- VC6下开发的des邮件加密系统
- diffie-hellman密钥交换协议vc++实现
- MFC 拖曳文件获得文件路径
- MFC简易计算器
- MFC编程实现socket通信
- MFC 使用sqlite3
- MFC界面设计
- 推箱子 源代码 MFC
- MFC DEM内插等高线
- MFC做的小游戏连连看(含音乐含设置
- 基于C++ MFC的学生宿舍管理系统
评论
共有 条评论