calculate the area of ​​a rectangle (Delphi)



var p,l,luas:integer;
begin
p:=10;
l:=5;
luas:=p*l;
write(‘luas=’,luas);
readln;
end.

0 comments: