Advertisement
igovasconcelos

Untitled

Aug 26th, 2020
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. anos = int(input("Você tem quantos anos? "))
  2.  
  3. if anos == 18:
  4.   print("Você tem 18 anos")
  5. elif anos > 18:
  6.   print("Você tem mais de 18 anos")
  7. else:
  8.   print("Você é menor de idade")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement