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

📄 relation.dpr.txt

📁 对矩阵这种数据结构进行变换
💻 TXT
字号:
program Relation;

uses
  Forms,
  MainForm in 'MainForm.pas' {FmRel},
  MatClass in 'MatClass.pas',
  About in 'About.pas' {AboutForm};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TFmRel, FmRel);
  Application.CreateForm(TAboutForm, AboutForm);
  FmRel.Show;
  AboutForm.ShowModal;
  Application.Run;
end.

⌨️ 快捷键说明

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