program so_sanh; Var x,y:integer; Begin x:=5; x:=7; x:=x+2; writeln(‘so sanh x,y:’,x=y); readln; So sanh x,y:FALSE So sanh x,y:TRUE So sanh x,y:x<y So sanh x,y:x=y

2 câu trả lời

program so-sanh
Var X,y: integer
Begin

x:=5
x:=7

writeln(si sabg


x:=x+2

program so_sanh;

var x, y : integer;

begin

x := 5;

x := 7;

x := x + 2;

writeln(‘so sanh x, y : ’, x = y);

readln;

* * ** * ** * ** * ** * ** * *

⇒ x = 5;

⇒ y = 7;

⇒ x := 5 + 2 = 7

⇒ x = y = 7 ⇒ TRUE

* * ** * ** * ** * ** * ** * *

A. So sanh x, y : FALSE

B. So sanh x, y : TRUE

C. So sanh x, y : x < y

D. So sanh x, y : x = y

⇒ Đáp án : B