Divisible by 5
As you know, a number is divisible by 5 if its remainder is 0 or 5.
Write a code that calculates if the number is divisible by 5 or not.
Input
153
Input: an integer
Output: remainder
YESif it is divisible by 5
NO if it is not divisible by 5
1
2
320
Output
3
NO
0
YES
ПОМОГИТЕ ИНФОРМАТИКА 7 класс ПИТОН даю 15БАЛЛОВ!!!
Answers & Comments
Ответ:
inputValue = int(input('write number'))
if inputValue % 5 == 0:
print('yes')
else:
print('no')
Объяснение: Мы пишем значение которые оператором Int становится number потом мы говорим если inputValue % 5 == 0 тоесть остаток inputValue % 5 равен 0 пусть в консоли напишет yes а если нет то просто no