Advertisement
Mary-br

Exercício 2

Jul 12th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. b = float(input("Qual o valor da base do retângulo?"))
  2. h = float(input("Qual o valor da altura do retângulo?"))
  3. area =  b * h
  4. print(f"A área do retângulo é: {area}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement