Set 108 Practical Question

⭐ Q8. Circle और Rectangle का Area निकालना

Example Code (Read Only):


r = int(input("Radius: "))
l = int(input("Length: "))
b = int(input("Breadth: "))
print("Area of Circle =", 3.14*r*r)
print("Area of Rectangle =", l*b)

Python Online Editor