⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 code11.h

📁 Partial differential equations
💻 H
字号:
#include <afxwin.h>
#include <afxcmn.h>
#include <math.h>
#define IDC_BUTTON 501
#define nMenuItems 3
#define maxInput 11
#define N 8
#define M 6

extern double parse(CString,int,double [],int []);

class CCode11 : public CFrameWnd
{
protected:
	typedef struct
	{
		double x,y,t;
	} PT;
	PT *pt;
	typedef struct
	{
		CString label,item;
		CPoint hm;
		CEdit ed;
		CRect rc,display;
	} INPUT;
	INPUT input[maxInput+1];
	typedef struct
	{
		CString item;
		CPoint hm;
		CRect rc;
	} MENU;
	MENU menu[nMenuItems+1];
	CListCtrl table1,table2;
	CPoint hGrid;
	CRect rcGrid;
	CSize wrc;
	CFont Arial80;
	CButton btn;
	int fStatus,m,n,idc,nInputItems,fMenu;
	int hSpace,vSpace,r1vspace;
	double **a,*b,alpha,h,k,*z,**u,**w;
public:
	CCode11();
	~CCode11();
	void InputLabels(),Poisson(),Heat(),Wave();
	void SolveSLE(),ShowTable(),Clear(CRect),SecondInput();
	afx_msg void OnPaint(),OnButton();
	afx_msg void OnLButtonDown(UINT,CPoint);
	DECLARE_MESSAGE_MAP()
};

class CMyWinApp : public CWinApp
{
public:
	virtual BOOL InitInstance();
};

⌨️ 快捷键说明

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