Code
FC01
DAF to read the length , breadth and height of a rectangular parallelepiped(cuboid), calculate and
display its Total Surface Area , Lateral Surface Area and Volume
Answers
l,b,h = [int (i) for i in input ().split()]
TotalSurfaceArea = 2*(l*b+b*h+l*h)
LateralSurfaceArea = 2*h*(l+b)
Volume = l*b*h
print(f"Total Surface Area = {TotalSurfaceArea}\nLateral Surface Area = {LateralSurfaceArea}\nVolume = {Volume}")
Please Thank Me
And Mark this is as Brainliest
Given : read the length , breadth and height of a rectangular parallelepiped(cuboid).
To Find : calculate and display its Total Surface Area , Lateral Surface Area and Volume
Solution:
L = Length
B =Breadth
H = Height
T = Total Surface Area
A = Lateral Surface Area
V = Volume
START
Float L , B , H , T , A , V
Input L , B , H
Process :
T = 2 x ( LxB + L x H + B x H)
A = 2 x H x ( L + B)
V = L x B x H
out Put - T , A , V
Printf T is Total Surface Area
Printf A is Lateral Surface Area
Printf V is volume
STOP
Learn More:
Write a a algorithm for a program that adds two digits numbers ...
https://brainly.in/question/14599411
find the hcf of 75 and 243 using Euclid division algorithm express in ...
https://brainly.in/question/9266837