Anderson Pozo

Generation

generate functionMon, 24 Jul 2023

Hacer un programa para ingresar cinco números y listar cuántos de esos cinco números son positivos.

count = 0 for i in range(5): num = int(input()) if num > 0: count += 1 print("{} numbers are positive".format(count))

Questions about programming?Chat with your personal AI assistant