突然吹空调头疼怎么办:试写出下来程序各语句的运算结果:

来源:百度文库 编辑:查人人中国名人网 时间:2024/05/10 10:18:17
试写出下来程序各语句的运算结果:
PROGRAM aaa;
var a,b:real;c:char;
Begin
randomize; a:=random; b:=random(50); c:=upcase('a');
a:=5;b=6;if not (a=3) then a:=4;
if (a>2) and (b=7) then a:=8;
if (a=5) or (b<9) then b:=8;
End.

a=4,b=6