feat: Initial commit
This commit is contained in:
6
Laboratorio3/bisestile.py
Normal file
6
Laboratorio3/bisestile.py
Normal file
@@ -0,0 +1,6 @@
|
||||
anno = int(input("Inserisci un anno: "))
|
||||
|
||||
if anno % 400 == 0 or (anno % 4 == 0 and anno % 100 != 0):
|
||||
print("L'anno è bisestile")
|
||||
else:
|
||||
print("L'anno non è bisestile")
|
||||
Reference in New Issue
Block a user