gausspjt.dpr

来自「数值分析 Gauss消元法Delphi源程序」· DPR 代码 · 共 16 行

DPR
16
字号
program GaussPjt;

uses
  Forms,
  main in 'main.pas' {mainfrm},
  help in 'help.pas' {helpfrm};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(Tmainfrm, mainfrm);
  Application.CreateForm(Thelpfrm, helpfrm);
  Application.Run;
end.

⌨️ 快捷键说明

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