0
(How to make a program to show that if your age is above 12 so you can )(if not you cannot)
please solve this problem
3 Respuestas
+ 1
python:
age = input()
if age > 12:
print("over 12")
else:
print("too young")
+ 1
java example:
https://code.sololearn.com/c3ZyNVxrj3U0/?ref=app
+ 1
thank you bro