if6.pas
来自「This is programing tutorial for people w」· PAS 代码 · 共 13 行
PAS
13 行
program if6;
var
i, j : byte;
begin
write('Enter a value for i = '); readln(i);
write('Enter a value for j = '); readln(j);
if (i>3) and (j>4) then
begin
writeln('This will be done if i>3 and j>4');
writeln('Now change the "and" with "or" and "xor"');
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?