Odpowiedź:
endVar = True
countLower = 0
countHigher = 0
while (endVar):
x = int(input("Podaj liczbę: "))
if(x > 0):
countHigher += 1
elif(x < 0):
countLower += 1
elif(x == 0):
endVar = False
print("Liczba wprowadzonych liczb dodatnich: %2d, Liczba wprowadzonych liczb ujemnych: %2d" % (countHigher,countLower))
Wyjaśnienie:
Program zlicza ilość liczb dodatnich i ujemnych wprowadzonych przez użytkownika
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
endVar = True
countLower = 0
countHigher = 0
while (endVar):
x = int(input("Podaj liczbę: "))
if(x > 0):
countHigher += 1
elif(x < 0):
countLower += 1
elif(x == 0):
endVar = False
print("Liczba wprowadzonych liczb dodatnich: %2d, Liczba wprowadzonych liczb ujemnych: %2d" % (countHigher,countLower))
Wyjaśnienie:
Program zlicza ilość liczb dodatnich i ujemnych wprowadzonych przez użytkownika