Take values of length and breadth of a rectangle from user and check if it is square or not.
Question
Take values of length and breadth of a rectangle from user and check if it is square or not.
Solution
Sure, here is a step-by-step guide on how to do this:
- First, you need to ask the user to input the length and breadth of the rectangle. In Python, you can use the
input()
function for this.
length = float(input("Enter the length of the rectangle: "))
breadth = float(input("Enter the breadth of the rectangle: "))
- Next, you need to check if the length and breadth are equal. If they are, then the rectangle is a square. If they are not, then the rectangle is not a square. You can use an
if
statement to do this.
if length == breadth:
print("This is a square.")
else:
print("This is not a square.")
- That's it! When you run this program, it will ask the user to input the length and breadth of a rectangle, and then it will tell them whether or not the rectangle is a square.
Similar Questions
When is a rectangle a square?A.When its angles are right anglesB.When its sides are congruentC.When its sides are parallelD.When its angles are convex angles
Write a VB Program that calculates the area of a rectangle give that the area = lengthmultiplied by width.
Create a method display() that display the length, width, perimeter and area of an object created using an instantiation on rectangle class.
The difference between the length and breadth of a rectangle is 23 m. If its perimeter is 206 m, then its area is:1520 m22420 m22480 m22520 m2
Which of the diagrams below represents the statement "If it is a square, then it is a rectangle"?A.Figure AB.Figure BSUBMITarrow_backPREVIOUS
Upgrade your grade with Knowee
Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.