n = int(input("Введите количество чисел в последовательности: "))
counter = 0
while n > 0:
x = int(input())
if x % 10 == 3:
counter += 1
n -= 1
print(counter)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
n = int(input("Введите количество чисел в последовательности: "))
counter = 0
while n > 0:
x = int(input())
if x % 10 == 3:
counter += 1
n -= 1
print(counter)