布尔( Booleans)
优质
小牛编辑
130浏览
2023-12-01
Pascal提供数据类型Boolean,使程序员能够定义,存储和操作逻辑实体,例如常量,变量,函数和表达式等。
布尔值基本上是整数类型。 布尔类型变量有两个预定义的可能值True和False 。 解析为布尔值的表达式也可以分配给布尔类型。
Free Pascal还支持ByteBool , WordBool和LongBool类型。 它们分别是Byte,Word或Longint类型。
值False等于0(零),并且在转换为布尔值时,任何非零值都被视为True。 如果将布尔值True分配给LongBool类型的变量,则将其转换为-1。
应该注意,逻辑运算符and/or not为布尔数据类型定义的。
布尔数据类型声明
使用var关键字声明布尔类型的变量。
var
boolean-identifier: boolean;
例如,
var
choice: boolean;
例子 (Example)
program exBoolean;
var
exit: boolean;
choice: char;
begin
writeln('Do you want to continue? ');
writeln('Enter Y/y for yes, and N/n for no');
readln(choice);
if(choice = 'n') then
exit := true
else
exit := false;
if (exit) then
writeln(' Good Bye!')
else
writeln('Please Continue');
readln;
end.
编译并执行上述代码时,会产生以下结果 -
Do you want to continue?
Enter Y/y for yes, and N/n for no
N
Good Bye!
Y
Please Continue