Rok przestępny - Python

This commit is contained in:
Mateusz Słodkowicz 2024-11-18 00:15:09 +01:00
parent 101bd350f6
commit 9596ef4a3a
Signed by: materus
GPG Key ID: 28D140BCA60B4FD1
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
def Czytaj_rok():
rok = int(input("Podaj rok: "))
return rok;
def Czy_przestepny(rok):
return ((rok%4==0) and not (rok%100==0)) or (rok % 400 == 0)
def Wypisz_czy_przestepny(rok,przestepny):
if(przestepny):
print("Rok", rok, "jest przestepny")
else:
print("Rok", rok, "nie jest przestepny")
def Glowna_procedura():
rok = Czytaj_rok()
Wypisz_czy_przestepny(rok,Czy_przestepny(rok))
Glowna_procedura()