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

📄 exam_10_1.dpr

📁 本光盘是《Delphi 7应用教程》一书的配套光盘
💻 DPR
字号:
library Exam_10_1;

uses
  SysUtils,
  Classes;

{$R *.res}
  Function Max(x,y,z:Integer):Integer;stdcall;
    var
       t:integer;
    begin
      if (x<y) then
          t:=y
      else
          t:=x;
      if (t<z) then
          t:=z;
      max:=t;
    end;
  Function Min(x,y,z:Integer):Integer;stdcall;
    var
       t:integer;
    begin
      if (x>y) then
          t:=y
      else
          t:=x;
      if (t>z) then
          t:=z;
      min:=t;
    end;
  exports
     max,min;
begin
end.

⌨️ 快捷键说明

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