Welcome to Westonci.ca, the Q&A platform where your questions are met with detailed answers from experienced experts. Get the answers you need quickly and accurately from a dedicated community of experts on our Q&A platform. Join our Q&A platform to connect with experts dedicated to providing accurate answers to your questions in various fields.

assignment 2: room area
programming python in Project Stem​


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

Thank you for visiting. Our goal is to provide the most accurate answers for all your informational needs. Come back soon. We hope you found this helpful. Feel free to come back anytime for more accurate answers and updated information. We're dedicated to helping you find the answers you need at Westonci.ca. Don't hesitate to return for more.