Make a program for calculating the volume, total surface area, the sum of the edges of a straight parallelepiped

Pascal:
var
a, b, c, S: real;
begin
a: = 9;
b: = 7.5;
c: = 5;
S: = 2 * (a * b + b * c + c * a);
writeln (‘Area of a rectangular parallelepiped =’, S);
end.



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.