Maus_Matthis
unknown
python
a year ago
265 B
9
Indexable
gen = 0
y = 6
e = 9
a = 12
while gen <= 5:
gen += 1
y1 = y
y = int(e*4 + a*2)
e = int(y1/2)
a = int(e/3)
print(f"\nGen: {gen}")
print(f"Junge: {y}")
print(f"Erwachsene: {e}")
print(f"Alte: {a}")
Editor is loading...
Leave a Comment