Ответ:
import random
count = 0
for i in range(10):
chislo = random.randint(-50, 50)
print(chislo)
if chislo >= 0:
count = count + 1
print("кол-во положительных чисел: ", count)
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
import random
count = 0
for i in range(10):
chislo = random.randint(-50, 50)
print(chislo)
if chislo >= 0:
count = count + 1
print("кол-во положительных чисел: ", count)
Объяснение: