biginttest.dpr

来自「Delphi的大数运算演示 pudn上大多是VC的 所以传个Delphi的」· DPR 代码 · 共 20 行

DPR
20
字号
program BigIntTest;
{Copyright 2001-2005, Gary Darby, Intellitech Systems Inc., www.DelphiForFun.org

 This program may be used or modified for any non-commercial purpose
 so long as this original notice remains in place.
 All other rights are reserved
 }

uses
  Forms,
  U_BigIntTest in 'U_BigIntTest.pas' {bigints};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(Tbigints, bigints);
  Application.Run;
end.

⌨️ 快捷键说明

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