code5.h

来自「this program is system of linear equatio」· C头文件 代码 · 共 31 行

H
31
字号
#include <afxdisp.h>
#include <math.h>
#include "resource.h"
#define N 5

class CCode5 : public CDialog
{
public:
	CCode5(CWnd* pParent = NULL);
	enum { IDD = IDD_DIALOG1 };
	virtual ~CCode5();
	virtual void OnOK();
	void ReadInput(),DisplayResults(),DisplayError(CString);
	afx_msg void OnGauss();
	afx_msg void OnCrout();
	afx_msg void OnCholesky();
	afx_msg void OnThomas();
	afx_msg void OnGaussSeidel();
	afx_msg void OnReset();
	int n;
	double **A,**L,**U,*x,*b;
	CString **sA,*sx,*sb,method;
	DECLARE_MESSAGE_MAP()
};

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

⌨️ 快捷键说明

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