Computer Science, asked by tarunbansal1620, 10 months ago

answers to code practice 2.8 code practice on edhesive

Answers

Answered by eburcham58
5

Answer:

Question 1)

print("Enter a number: "))

print("Enter a number: "))

print("Enter a number:"))

that is actually the answer

Question 2)

a = float(input("Enter Side A: "))

b = float(input("Enter Side B: "))

c = float(input("Enter Side C: "))

d = float(input("Enter Side D: "))

e = float(input("Enter Side E: "))

area1 = 1.0* a * b

area2 = (a - c) * (d - e -b)

area3 = 0.5 * (a - c) * e

print ("Room Area: " + str(area1 + area2 + area3))

Explanation:

Pls mark my answer as the brainliest answer!

Similar questions