Advertisement
ydpetkov

house_painting

Jul 14th, 2022
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. x_height_of_house = float(input())
  2. y_lngth_sidewall = float(input())
  3. h_height_triangleside = float(input())
  4.  
  5. sidewall_area = x_height_of_house * y_lngth_sidewall
  6. window = 1.5 * 1.50
  7. total_2_sidewall = (2 * sidewall_area) - (2 * window)
  8. back_wall = x_height_of_house * x_height_of_house
  9. entrance = 1.2 * 2
  10. total_back_and_front_wall = (2 * back_wall) - entrance
  11. total_area = total_2_sidewall + total_back_and_front_wall
  12. green_paint = total_area / 3.4
  13.  
  14. roof_2_rectangle = 2 * (x_height_of_house * y_lngth_sidewall)
  15. roof_2_triangle = 2 * (x_height_of_house * h_height_triangleside / 2)
  16. roof_total_area = roof_2_rectangle + roof_2_triangle
  17. red_paint = roof_total_area / 4.3
  18.  
  19. print(f'{green_paint:.2f}')
  20. print(f'{red_paint:.2f}')
  21.  
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement