b05031126.h

来自「本程序是一个完整的后缀表达式计算」· C头文件 代码 · 共 63 行

H
63
字号
/*
 * 学    号:B05031126
 *
 * 作    者:南京邮电大学计算机学院 吴登荣
 *
 * 摘    要:本程序是一个完整的后缀表达式计算,主要用栈的操作实现,本程序封装了CStack类实现
 *           栈的操作,本程序最大的特色在乎运用实时监控的算法对表达式进行数据校验,对一切合
 *           法的表达式进行计算,检验出所有任何非法表达式并提示。
 *
 * 完成日期:2006年9月25日
 *
 * E - mail:Jeffrey.nupt@gmail.com
*/
// B05031126.h : main header file for the B05031126 application
//

#if !defined(AFX_B05031126_H__A9150D6E_179D_4467_9C19_9B7D9BA7B7D5__INCLUDED_)
#define AFX_B05031126_H__A9150D6E_179D_4467_9C19_9B7D9BA7B7D5__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"		// main symbols

/////////////////////////////////////////////////////////////////////////////
// CB05031126App:
// See B05031126.cpp for the implementation of this class
//

class CB05031126App : public CWinApp
{
public:
	CB05031126App();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CB05031126App)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation

	//{{AFX_MSG(CB05031126App)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_B05031126_H__A9150D6E_179D_4467_9C19_9B7D9BA7B7D5__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?