Ответ:
program TestABC;
var
a, b, c: Integer;
begin
Write ('Введите a, b, c: ');
Readln (a, b, c);
if (a < b) and (b < c) then
WriteLn ('a < b < c - справедливо')
else
WriteLn ('a < b < c - не справедливо');
ReadLn;
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
program TestABC;
var
a, b, c: Integer;
begin
Write ('Введите a, b, c: ');
Readln (a, b, c);
if (a < b) and (b < c) then
WriteLn ('a < b < c - справедливо')
else
WriteLn ('a < b < c - не справедливо');
ReadLn;
end.