Задача 6.
Program asd;
var a,b,c,s: real;
BEGIN
Write ('Введите a: '); readln (a);
Write ('Введите b: '); readln (b);
Write ('Введите c: '); readln (c);
if (a>=0) then begin a:=a*a; Writeln('A: ',a);end;
if (b>=0) then begin b:=b*b; Writeln('B: ',b);end;
if (c>=0) then begin c:=c*c; Writeln('C: ',c);end;
Readln();end.
Задача 8.
Program asd;
var x,y,z,res,min: real;
BEGIN
Write ('Введите X: '); readln (x);
Write ('Введите Y: '); readln (y);
Write ('Введите Z: '); readln (z);
res:=x+y+z;
if res<1 then begin writeln ('Сумма меньше 1'); <br> if (x else
if y else z:=(x+y)/2;
end
else writeln ('Сумма больше 1');
writeln ('X = ',x:3:2,' Y = ',y:3:2, ' Z = ',z:3:2);
Readln();
end.