Nhập a, b, c, d từ bàn phím tìm gtri lớn nhất của 4 số vừa nhập 15/07/2021 Bởi Madeline Nhập a, b, c, d từ bàn phím tìm gtri lớn nhất của 4 số vừa nhập
program lon_nhat; uses crt; var a,b,c,d,max:integer; begin clrscr; write(‘Nhap a: ‘); readln(a); write(‘Nhap b: ‘); readln(b); write(‘Nhap c: ‘); readln(c); write(‘Nhap d: ‘); readln(d); max:=a; if max<b then max:=b; if max<c then max:=c; if max<d then max:=d; write(‘Gia tri lon nhat la: ‘,max); readln; end. Bình luận
uses crt; var a,b,c,d,max: integer; begin clrscr; write (‘nhap a: ‘); readln (a); write (‘nhap b: ‘); readln (b); write (‘nhap c: ‘); readln (c); write (‘nhap d: ‘); readln (d); max:=a;if max<b then max:=b;if max<c then max:=c;if max<d then max:=d;write(‘Gia tri lon nhat la: ‘,max);readln;end. Bình luận
program lon_nhat;
uses crt;
var a,b,c,d,max:integer;
begin
clrscr;
write(‘Nhap a: ‘); readln(a);
write(‘Nhap b: ‘); readln(b);
write(‘Nhap c: ‘); readln(c);
write(‘Nhap d: ‘); readln(d);
max:=a;
if max<b then max:=b;
if max<c then max:=c;
if max<d then max:=d;
write(‘Gia tri lon nhat la: ‘,max);
readln;
end.
uses crt;
var a,b,c,d,max: integer;
begin
clrscr;
write (‘nhap a: ‘); readln (a);
write (‘nhap b: ‘); readln (b);
write (‘nhap c: ‘); readln (c);
write (‘nhap d: ‘); readln (d);
max:=a;
if max<b then max:=b;
if max<c then max:=c;
if max<d then max:=d;
write(‘Gia tri lon nhat la: ‘,max);
readln;
end.