so sánh 2 số nguyên a,b

2 câu trả lời

program ct;

uses crt;

var a,b:integer;

begin clrscr;

   write('Nhap hai so a, b: '); readln(a,b);

     if a>b then write(a,'>',b);

     if a<b then write(a,'<',b);

     if a=b then write(a,'=',b);

readln;

end.

Học tốt!

program tin_hoc;

uses crt;

var a,b:integer;

begin

clrscr;

write('a=');readln(a);

write('b=');readln(b);

writeln('So sanh a va b:');

if a < b then write('a < b') 

else if a = b then write('a = b')

else if a > b then write('a > b');

readln;

end.

CHO MIK XIN CÂU TLHN NHA