This commit is contained in:
2022-04-07 14:43:17 +02:00
parent aff8164a5c
commit c580ecc6e4
8 changed files with 266 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# Programm, welches wiederholenden um 1 erhöht, startwert=1, obergrenze vom nutzer festglegt
# Definieren
x=1
# Eingabe
obergrenze=float(input("Maximalen Wert festlegen:"))
while x<obergrenze+1:
print(x)
x=x+1