Составьте блок-схему к программе
program If5;
var
A, B, C: Real;
begin
Write('Введите первое число: ');
Readln (A);

Write('Введите второе число: ');
Readln (B);

Write('Введите третье число: ');
Readln (C);

if (A<=B) and (A<=C) then Writeln(B+C)
else if (B<=A) and (B<=C) then Writeln(A+C)
else if (C<=A) and (C<=B) then Writeln(A+B);

end.
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.