Tudjewuj

Приложение "Чётное ли число?"

Mar 27th, 2023
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | Source Code | 0 0
  1. number = int(input("Введите число: "))
  2. if number % 2 == 0:
  3.     print("Число чётное")
  4. else:
  5.     print("Число нечётное")
Advertisement
Add Comment
Please, Sign In to add comment