Odpowiedź:
x = input("(1) Wpisz liczbę: ").strip()
while not x.isdigit():
print("Musisz wprowadzić liczbę całkowitą")
y = input("(2) Wpisz liczbę: ").strip()
while not y.isdigit():
if int(x)>int(y):
print("%s jest większy niż %s" % (x,y))
elif int(y)>int(x):
print("%s jest większy niż %s" % (y, x))
else:
print("Dwie liczby są takie same")
Wyjaśnienie:
licze na NAJ
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
x = input("(1) Wpisz liczbę: ").strip()
while not x.isdigit():
print("Musisz wprowadzić liczbę całkowitą")
x = input("(1) Wpisz liczbę: ").strip()
y = input("(2) Wpisz liczbę: ").strip()
while not y.isdigit():
print("Musisz wprowadzić liczbę całkowitą")
y = input("(2) Wpisz liczbę: ").strip()
if int(x)>int(y):
print("%s jest większy niż %s" % (x,y))
elif int(y)>int(x):
print("%s jest większy niż %s" % (y, x))
else:
print("Dwie liczby są takie same")
Wyjaśnienie:
licze na NAJ