资源简介
基于MFC的可视化界面,完整代码,界面美观整洁,拥有整副扑克的24点游戏,算法完备,里面有你想要的!
代码片段和文件信息
// 24点游戏.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “24点游戏.h“
#include “24点游戏Dlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMy24App
BEGIN_MESSAGE_MAP(CMy24App CWinApp)
//{{AFX_MSG_MAP(CMy24App)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMy24App construction
CMy24App::CMy24App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMy24App object
CMy24App theApp;
/////////////////////////////////////////////////////////////////////////////
// CMy24App initialization
BOOL CMy24App::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
CMy24Dlg 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 2015-04-21 10:43 软工3班24点游戏\
文件 1976892 2015-04-20 05:44 软工3班24点游戏\24点游戏.aps
文件 3615 2015-04-20 05:50 软工3班24点游戏\24点游戏.clw
文件 2047 2015-04-18 14:54 软工3班24点游戏\24点游戏.cpp
文件 14527 2015-04-20 05:45 软工3班24点游戏\24点游戏.dsp
文件 541 2009-11-08 14:23 软工3班24点游戏\24点游戏.dsw
文件 1308 2015-04-18 14:54 软工3班24点游戏\24点游戏.h
文件 82944 2015-04-20 05:50 软工3班24点游戏\24点游戏.ncb
文件 50688 2015-04-20 05:50 软工3班24点游戏\24点游戏.opt
文件 250 2015-04-20 05:50 软工3班24点游戏\24点游戏.plg
文件 14644 2015-04-20 05:44 软工3班24点游戏\24点游戏.rc
文件 19167 2015-04-20 05:44 软工3班24点游戏\24点游戏Dlg.cpp
文件 2064 2015-04-20 05:44 软工3班24点游戏\24点游戏Dlg.h
目录 0 2015-04-21 10:43 软工3班24点游戏\Debug\
文件 7848012 2015-04-20 05:44 软工3班24点游戏\Debug\24点游戏.exe
文件 2521096 2015-04-20 05:44 软工3班24点游戏\Debug\24点游戏.ilk
文件 16140 2015-04-20 05:44 软工3班24点游戏\Debug\24点游戏.obj
文件 5526588 2015-04-20 03:49 软工3班24点游戏\Debug\24点游戏.pch
文件 4137984 2015-04-20 05:44 软工3班24点游戏\Debug\24点游戏.pdb
文件 1931528 2015-04-20 05:44 软工3班24点游戏\Debug\24点游戏.res
文件 94198 2015-04-20 05:44 软工3班24点游戏\Debug\24点游戏Dlg.obj
文件 17638 2015-04-20 05:44 软工3班24点游戏\Debug\DlgMy.obj
文件 107899 2015-04-20 03:49 软工3班24点游戏\Debug\StdAfx.obj
文件 214016 2015-04-20 05:50 软工3班24点游戏\Debug\vc60.idb
文件 372736 2015-04-20 05:44 软工3班24点游戏\Debug\vc60.pdb
文件 1930 2015-04-20 03:44 软工3班24点游戏\DlgMy.cpp
文件 1418 2015-04-20 03:44 软工3班24点游戏\DlgMy.h
目录 0 2015-04-21 10:43 软工3班24点游戏\res\
文件 4718 2015-04-20 05:44 软工3班24点游戏\resource.h
文件 0 2009-11-12 10:03 软工3班24点游戏\res\24点游戏.rc2
文件 55126 2009-11-11 21:16 软工3班24点游戏\res\Games 24.ico
............此处省略57个文件信息
评论
共有 条评论