area of four walls
CLS
INPUT "Enter the length"; l
INPUT "Enter the breadth"; b
INPUT "Enter the height"; h
A = 2*h*(l+b)
PRINT "Area of four walls="; A
END
INPUT "Enter the length"; l
INPUT "Enter the breadth"; b
INPUT "Enter the height"; h
A = 2*h*(l+b)
PRINT "Area of four walls="; A
END
Comments
Post a Comment