lgs_gauss.dpr
来自「用高斯方法计算线性方程组的值」· DPR 代码 · 共 16 行
DPR
16 行
program LGS_Gauss;
uses
Forms,
Haupt in 'Haupt.pas' {Haupt_Form},
Ergebnis in 'Ergebnis.pas' {Ergebnis_Form};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(THaupt_Form, Haupt_Form);
Application.CreateForm(TErgebnis_Form, Ergebnis_Form);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?