Surface Area of Cube || Geometric Program || Python

In this we are going to see a basic program to calculate surface area of cube in Python Programming Language.


side=int(input("Enter side of cube: "))
surfacearea =6*(side*side)  
print("Surface Area of Cube is : ",surfacearea,"sq units");  

#Code by Shrinivas


#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post