Advertisement
ydpetkov

area_figures

Jul 10th, 2022
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.53 KB | None | 0 0
  1. from math import pi
  2.  
  3. type_of_the_figure = (input())
  4. result = 0
  5.  
  6. if type_of_the_figure == 'square':
  7.     side = float(input())
  8.     result = side * side
  9. elif type_of_the_figure == 'rectangle':
  10.     side_1 = float(input())
  11.     side_2 = float(input())
  12.     result = side_1 * side_2
  13. elif type_of_the_figure == 'circle':
  14.     radius = float(input())
  15.     result = pi * (radius ** 2)
  16. elif type_of_the_figure == 'triangle':
  17.     side = float(input())
  18.     height = float(input())
  19.     result = side * height / 2
  20. print(f'{result:.3f}')
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement