资源简介
【版本说明】
1、增加运算符填写功能
2、增加进制转换功能(500位数有效)
3、增加数据统计功能
4、增加运算精度调节(仅针对除法和圆周率的计算)
5、增加单位转换功能
6、增加输入结果按钮,可将上一次运算结果作为数值输入
7、增加线性方程组求解功能
8、优化求圆周率的算法,可精确到9000位以上
9、修正了之前版本的一些bug
10、美化界面
【版权说明】
未经编写人员许可,任何单位及个人不得以任何方式或理由对该产品进行复制、修改、抄录、传播或与其它产品捆绑使用、销售。
代码片段和文件信息
// 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 44260 2014-08-01 17:20 Calculator\Calculator.aps
文件 4966 2014-08-01 17:22 Calculator\Calculator.clw
文件 2119 2014-07-26 11:04 Calculator\Calculator.cpp
文件 4552 2014-08-01 17:15 Calculator\Calculator.dsp
文件 545 2014-07-26 11:04 Calculator\Calculator.dsw
文件 1368 2014-07-26 11:04 Calculator\Calculator.h
文件 107520 2014-08-01 17:22 Calculator\Calculator.ncb
文件 51712 2014-08-01 17:22 Calculator\Calculator.opt
文件 946 2014-08-01 17:20 Calculator\Calculator.plg
文件 13262 2014-08-01 17:20 Calculator\Calculator.rc
文件 51073024 2014-07-28 10:57 Calculator\Calculator.sdf
文件 886 2014-07-28 10:55 Calculator\Calculator.sln
..A..H. 11776 2014-07-28 14:01 Calculator\Calculator.suo
文件 7784 2014-07-28 10:54 Calculator\Calculator.vcxproj
文件 1933 2014-07-28 10:54 Calculator\Calculator.vcxproj.filters
文件 143 2014-07-28 10:54 Calculator\Calculator.vcxproj.user
文件 69152 2014-08-01 16:38 Calculator\CalculatorDlg.cpp
文件 4250 2014-08-01 16:28 Calculator\CalculatorDlg.h
文件 2252900 2014-08-01 17:20 Calculator\Debug\Calculator.exe
文件 667 2014-07-28 10:56 Calculator\Debug\Calculator.exe.em
文件 732 2014-07-28 10:56 Calculator\Debug\Calculator.exe.em
文件 381 2014-07-28 10:56 Calculator\Debug\Calculator.exe.intermediate.manifest
文件 2658284 2014-08-01 17:20 Calculator\Debug\Calculator.ilk
文件 92 2014-07-28 10:56 Calculator\Debug\Calculator.lastbuildstate
文件 4160 2014-07-28 10:56 Calculator\Debug\Calculator.log
文件 17108 2014-08-01 16:43 Calculator\Debug\Calculator.obj
文件 5466844 2014-07-28 14:02 Calculator\Debug\Calculator.pch
文件 4350976 2014-08-01 17:20 Calculator\Debug\Calculator.pdb
文件 13804 2014-08-01 17:20 Calculator\Debug\Calculator.res
文件 213856 2014-08-01 17:05 Calculator\Debug\CalculatorDlg.obj
............此处省略39个文件信息
- 上一篇:VS2015 MFC 指示灯报警显示
- 下一篇:Visual C++程序员指南
评论
共有 条评论