x = int(input('> '))
s = 0
if x < 0:
x = -x
while x != 0:
if x % 2 == 0:
s += x % 10
x = x // 10
print('Сумма четных цифр: ' + str(s))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
x = int(input('> '))
s = 0
if x < 0:
x = -x
while x != 0:
if x % 2 == 0:
s += x % 10
x = x // 10
print('Сумма четных цифр: ' + str(s))