Explore IDNLearn.com's extensive Q&A database and find the answers you need. Our platform provides accurate, detailed responses to help you navigate any topic with ease.
Sagot :
Answer:I love Python, very useful
Explanation:python is very easy and user friendly!
Answer:
side1 = float(input("Enter side A: "))
side2 = float(input("Enter side B: "))
side3 = float(input("Enter side C: "))
side4 = float(input("Enter side D: "))
side5 = float(input("Enter side E: "))
rect1 = (side1 * side2)
rect2 = (side4 - side2 - side5) * (side1 - side3)
tri = (side1 - side3) * side5 * 0.5
print("Room Area: " + str(rect1+ rect2+tri))
Explanation:
it adds all sides to make the area
Your participation means a lot to us. Keep sharing information and solutions. This community grows thanks to the amazing contributions from members like you. IDNLearn.com is committed to providing the best answers. Thank you for visiting, and see you next time for more solutions.