资源简介
纯粹只是添加了几行代码做出的加减乘除功能的计算器,几十K到大小,适合拿来应付某些···(你懂的~)
代码片段和文件信息
// jsq.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “jsq.h“
#include “jsqDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CJsqApp
BEGIN_MESSAGE_MAP(CJsqApp CWinApp)
//{{AFX_MSG_MAP(CJsqApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CJsqApp construction
CJsqApp::CJsqApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CJsqApp object
CJsqApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CJsqApp initialization
BOOL CJsqApp::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
CJsqDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-03-09 15:19 jsq\
文件 35748 2011-03-08 15:34 jsq\jsq.aps
文件 1412 2011-03-09 15:19 jsq\jsq.clw
文件 2021 2011-03-08 14:47 jsq\jsq.cpp
文件 4105 2011-03-08 14:47 jsq\jsq.dsp
文件 512 2011-03-08 14:47 jsq\jsq.dsw
文件 1291 2011-03-08 14:47 jsq\jsq.h
文件 50176 2011-03-09 15:19 jsq\jsq.ncb
文件 53760 2011-03-09 15:19 jsq\jsq.opt
文件 1480 2011-03-09 15:19 jsq\jsq.plg
文件 5650 2011-03-08 15:34 jsq\jsq.rc
文件 5294 2011-03-08 15:34 jsq\jsqDlg.cpp
文件 1466 2011-03-08 15:33 jsq\jsqDlg.h
文件 3525 2011-03-08 14:47 jsq\ReadMe.txt
目录 0 2011-03-08 14:47 jsq\res\
文件 1078 2011-03-08 14:47 jsq\res\jsq.ico
文件 395 2011-03-08 14:47 jsq\res\jsq.rc2
文件 1003 2011-03-08 15:26 jsq\resource.h
文件 205 2011-03-08 14:47 jsq\StdAfx.cpp
文件 1054 2011-03-08 14:47 jsq\StdAfx.h
- 上一篇:C++画数学函数图象
- 下一篇:Vc++6.0MFC入门教程,很好的资源。
相关资源
- C++制作的简单工厂模式计算器
- 计算器 VC++
- C++builder编写的简单科学计算器
- C++ 一元多项式计算器
- 简单计算器vs2010+MFC编写
- 大数计算器
- 基于51单片机的c语言编写的计算器程
- MFC+下的一个功能强大的矩阵计算器
- c语言课程设计报告 计算器的实现内
- C语言编在VC环境下带界面的计算器
- 分数计算器课程设计
- 单片机简易计算器的设计包含设计报
- 基于MFCVC6.0的简单计算器程序
- [近乎免费]QT计算器(一般计算器和多
- C语言计算器界面
- c语言编写的计算器 绝对经典
- MFC 计算器源代码
- 自制C++矩阵计算器
- VC++ MFC 的计算器的详细设计
- c++实现计算器
- 数据结构上机作业 一元稀疏多项式计
- 大学物理实验——密立根实验计算器
- C++编写简单计算器
- 任务书2一元稀疏多项式计算器数据结
- 基于MFC的计算器(功能非常齐全:进
- 大数计算器的c语言实现
- 用C语言设计并实现一个一元稀疏多项
- C语言计算器带括号、小数计算
- 基于proteus的计算器
- C++课程设计报告-科学计算器加强版
评论
共有 条评论