1 а)
if x=y
then begin x:=0; y:=0; end
else write(z);
б)
var a,b,c,d:integer;
begin
writeln('a, b, c:');
readln(a,b,c);
if a>b then d:=a else d:=b;
if c>d then d:=c;
writeln(d);
end.
Пример:
a, b, c:
2 8 5
8
2)
var a,b,c:integer;
begin
writeln('a, b, c:');
readln(a,b,c);
if a mod 2 <> 0 then a:=a*a*a;
if b mod 2 <> 0 then b:=b*b*b;
if c mod 2 <> 0 then c:=c*c*c;
writeln('a = ',a,' b = ',b,' c = ',c);
end.
Пример:
a, b, c:
5 2 7
a = 125 b = 2 c = 343
3)
Решение - в прилагаемом файле.