Pascal - 程序结构


在我们学习 Pascal 编程语言的基本构建块之前,让我们看一下最基本的 Pascal 程序结构,以便我们可以将其作为后续章节的参考。

帕斯卡程序结构

Pascal 程序基本上由以下部分组成 -

  • 节目名称
  • 使用命令
  • 类型声明
  • 常量声明
  • 变量声明
  • 函数声明
  • 程序声明
  • 主程序块
  • 每个块内的语句和表达式
  • 评论

每个 pascal 程序通常都有严格按照该顺序的标题语句、声明和执行部分。以下格式显示了 Pascal 程序的基本语法 -

program {name of the program}
uses {comma delimited names of libraries you use}
const {global constant declaration block}
var {global variable declaration block}

function {function declarations, if any}
{ local variables }
begin
...
end;

procedure { procedure declarations, if any}
{ local variables }
begin
...
end;

begin { main program block starts}
...
end. { the end of main program block }

帕斯卡你好世界示例

以下是一个简单的 Pascal 代码,它将打印“Hello, World!”字样。-

program HelloWorld;
uses crt;

(* Here the main program block starts *)
begin
   writeln('Hello, World!');
   readkey;
end. 

这将产生以下结果 -

Hello, World!

让我们看看上面程序的各个部分 -

  • 程序第一行程序HelloWorld;表示程序的名称。

  • 程序第二行使用crt;是一个预处理器命令,它告诉编译器在进行实际编译之前包含 crt 单元。

  • begin 和 end 语句中包含的下一行是主程序块。Pascal 中的每个块都包含在开始语句和结束语句内。但是,表示主程序结束的 end 语句后面是句号 (.),而不是分号 (;)。

  • 主程序块的开始语句是程序开始执行的地方

  • (*...*)内的行将 被编译器忽略,并已将其添加到程序中添加注释

  • 语句writeln('Hello, World!'); 使用 Pascal 中可用的 writeln 函数,该函数会产生消息“Hello, World!” 要显示在屏幕上。

  • 语句readkey;允许显示暂停,直到用户按下某个键。它是 crt 装置的一部分。单位就像 Pascal 中的图书馆。

  • 最后一句话结束。结束你的程序。

编译并执行 Pascal 程序

  • 打开文本编辑器并添加上述代码。

  • 将文件另存为hello.pas

  • 打开命令提示符并转到保存文件的目录。

  • 在命令提示符下键入 fpc hello.pas 并按 Enter 编译代码。

  • 如果代码中没有错误,命令提示符将带您进入下一行,并生成hello可执行文件和hello.o目标文件。

  • 现在,在命令提示符下键入hello来执行您的程序。

  • 您将能够在屏幕上看到“Hello World”,并且程序将等待您按下任意键。

$ fpc hello.pas
Free Pascal Compiler version 2.6.0 [2011/12/23] for x86_64
Copyright (c) 1993-2011 by Florian Klaempfl and others
Target OS: Linux for x86-64
Compiling hello.pas
Linking hello
8 lines compiled, 0.1 sec

$ ./hello
Hello, World!

确保免费的 pascal 编译器fpc位于您的路径中,并且您正在包含源文件 hello.pas 的目录中运行它。