Здесь Вы можете найти ответы на многие вопросы или задать свой вопрос!
1 input a
2 input b
3 input c
20 if a> b then goto 60
30 if b> c then goto 110
40 max=с
50 goto 120
60 if a> c then goto 90
70 max=с
80 goto 120
90 max=a
100 goto 120
110 max=b
120 if a< b then goto 160
130 if b< c then goto 210
140 min=с
150 goto 220
160 if a< c then goto 190
170 min=с
180 goto 220
190 min=a
200 goto 220
210 min=b
220 print min*max
var alpha: real;
begin
read(alpha);
if alpha > 90 then write("tupougolnyj");
if alpha = 90 then write("prjamougolnyj");
if alpha < 90 then write("ostrougolnyj");
end.
a-возраст cаши
b– возраст маши
program r;
var a,b: integer;
readln(a,b);
if a=b then writeln («ровесники»)else writeln( «неровесники»)
var
a: integer;
readln(a);
writeln(a*(a div 10 + (a mod 10)*10));
Популярные вопросы