Saved Bookmarks
| 1. |
Write a program to calculate the area of a rectangle. The program should get the length and breadth ; values from the user and print the area. |
|
Answer» length = input(“Enter length”) breadth = input(“Enter breadth”) print “Area of rectangle =”,length*breadth |
|