programm Z1;
var a, b, c,d:integer;
begin
writeln ('Введите четыре числа');
readln (a, b, c, d);
If a>b, a>c, a>d then
e:=a;
If b>a, b>c,b>d then
e:=b;
If c>a, c>b, c>d then
e:=c;
If d>a,d>b, d>c then
e:=d;
writeln ('Наибольшое число -',e);
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
programm Z1;
var a, b, c,d:integer;
begin
writeln ('Введите четыре числа');
readln (a, b, c, d);
If a>b, a>c, a>d then
e:=a;
If b>a, b>c,b>d then
e:=b;
If c>a, c>b, c>d then
e:=c;
If d>a,d>b, d>c then
e:=d;
writeln ('Наибольшое число -',e);
end.