12 lines
323 B
Python
12 lines
323 B
Python
punkte = int(input("Eine Note 1-100: "))
|
|
|
|
if punkte <= 100 and punkte >= 90:
|
|
print("Sehr gut")
|
|
elif punkte <= 89 and punkte >= 80:
|
|
print("Gut")
|
|
elif punkte <= 79 and punkte >= 70:
|
|
print("Befriedigend")
|
|
elif punkte <= 69 and punkte >= 60:
|
|
print("Ausreichend")
|
|
elif punkte <= 59:
|
|
print("Nicht bestanden")
|