pascal if 后跟多条语句
时间: 2023-09-16 11:09:04 浏览: 258
Pascal基础教程
在Pascal中,如果要在if语句中跟多条语句,可以使用begin和end关键字来定义一个代码块。代码块中可以包含多条语句,它们会按顺序执行。
以下是一个示例:
```
if condition then
begin
statement1;
statement2;
statement3;
end;
```
在上面的示例中,如果条件(condition)为真,则会依次执行statement1、statement2和statement3。如果条件为假,则代码块中的语句将被跳过。
需要注意的是,每个语句都需要以分号结尾。在代码块的最后一条语句后面不需要加分号。
阅读全文