Thương

Giới thiệu về bản thân

Chào mừng bạn đến với trang cá nhân của Thương
0
0
0
0
0
0
0
(Thường được cập nhật sau 1 giờ!)

# Take the length and width of a rectangle from the user.

length = int(input())

width = int(input())

# Display the perimeter and area of the rectangle on the screen.

print("The Perimeter of the rectangle is:")

print("The area of the rectangle is:")

# Take circle radius from user. r = float(input("Enter the radius of the circle:")) # Display the circumference and area of the circle on the screen. print("Circumference of the circle:" + str(2*3.14*r)) print("Area of the circle:" + str(r**2*3.14))