-
大小: 1.6MB文件类型: .rar金币: 1下载: 0 次发布日期: 2023-09-19
- 语言: C/C++
- 标签:
资源简介
本计算器实现了的功能有:
1、二进制、八进制、十进制及十六进制数的加、减、乘、除、乘方、取模等简单计算
2、科学计算函数,包括(反)正弦、(反)余弦、(反)正切、(反)余切、开方、指数等函数运行
3、以角度、弧度两种方式实现上述部分函数
4、具备历史计算的记忆功能
5、对不正确的表达式能指出其错误原因
有好的东西就应该大家分享,本人将自己做的一个课程设计给大家分享下,好快要交了...
**测试我的时发现好多后边多0.0000001,或者少了0.0000001,后来发现是强制转换出了问题..所以只能用double型数据,因为%f输出的就是double型,如果用float那是强制转换,有时会出错
本人懒得重新上传了,空间有限
参考资料:www.ymy5.com
代码片段和文件信息
// ex5.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “ex5.h“
#include “ex5Dlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CEx5App
BEGIN_MESSAGE_MAP(CEx5App CWinApp)
//{{AFX_MSG_MAP(CEx5App)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CEx5App construction
CEx5App::CEx5App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CEx5App object
CEx5App theApp;
/////////////////////////////////////////////////////////////////////////////
// CEx5App initialization
BOOL CEx5App::InitInstance()
{SetDialogBkColor (RGB (128 184 223) RGB ( 0 0 150 ) );
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
CEx5Dlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1160128 2008-12-18 18:36 vc计算器\ex5.aps
文件 3468 2008-12-18 18:36 vc计算器\ex5.clw
文件 2083 2008-12-17 20:55 vc计算器\ex5.cpp
文件 4311 2008-12-18 00:40 vc计算器\ex5.dsp
文件 512 2008-12-17 11:42 vc计算器\ex5.dsw
文件 1507372 2008-12-18 18:32 vc计算器\ex5.exe
文件 1291 2008-12-17 11:42 vc计算器\ex5.h
文件 99328 2008-12-18 18:36 vc计算器\ex5.ncb
文件 49664 2008-12-18 18:36 vc计算器\ex5.opt
文件 7644 2008-12-18 18:36 vc计算器\ex5.plg
文件 9931 2008-12-18 18:32 vc计算器\ex5.rc
文件 27509 2008-12-18 17:21 vc计算器\ex5Dlg.cpp
文件 3149 2008-12-18 14:23 vc计算器\ex5Dlg.h
文件 3525 2008-12-17 11:42 vc计算器\ReadMe.txt
文件 1129406 2008-12-18 00:35 vc计算器\res\1215571708.bmp
文件 1270 2008-12-18 00:35 vc计算器\res\bitmap2.bmp
文件 1078 2008-12-17 11:42 vc计算器\res\ex5.ico
文件 395 2008-12-17 11:42 vc计算器\res\ex5.rc2
文件 3890 2008-12-18 00:27 vc计算器\res\fdsfe.bmp
文件 3484 2008-12-18 18:24 vc计算器\resource.h
文件 205 2008-12-17 11:42 vc计算器\StdAfx.cpp
文件 1054 2008-12-17 11:42 vc计算器\StdAfx.h
文件 393 2008-12-18 18:33 vc计算器\说明.txt
目录 0 2008-12-18 18:36 vc计算器\Debug
目录 0 2008-12-18 18:24 vc计算器\res
目录 0 2008-12-18 18:36 vc计算器
----------- --------- ---------- ----- ----
4021090 26
评论
共有 条评论