" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
program prostokat;
uses CRT;
var
a,b:integer;
begin
clrscr;
Writeln('Podaj bok a');
readln(a);
Writeln('Podaj bok b');
readln(b);
Writeln;
Writeln('Pole wynosi: ',a*b);
Writeln('Obwod wynosi: ',(2*a)+(2*b));
readln;
end.
Ad. 2
program srednia;
uses CRT;
var
suma:real;
a,b,c:real;
begin
clrscr;
Writeln('Podaj liczbe 1');
readln(a);
Writeln('Podaj liczbe 2');
readln(b);
Writeln('Podaj liczbe 3');
readln(c);
Writeln;
suma := a+b+c;
suma := suma / 3;
Writeln('Srednia wynosi: ',suma:0:2);
readln;
end.
Ad. 3
program licz;
uses CRT;
var
x,y,h,v,ppc,pp,pb:real;
begin
clrscr;
writeln('Prostopadloscian');
write('Dlugosc 1 boku podstawy: ');
readln(x);
Write('Dlugosc 2 boku podstawy: ');
readln(y);
write('Wysokosc: ');
readln(h);
v:=x*y*h;
ppc:=(x*y)*2+(y*h)*2+(x*h)*2;
writeln('Objetosc: ',v:0:2);
writeln('Pole powierzchni calkowitej: ',ppc:0:2);
Readln;
end.
Jakbyś miał/miała jakieś reklamacje to pisz PW.