Files
004_comission/max015/T11/P04.py
louiscklaw acf9d862ff update,
2025-01-31 21:15:04 +08:00

11 lines
104 B
Python

def func1(n):
i = 1
s = 1
while s <= n:
i+=1
s+=i
print("*", end="")
n = 10
func1(n)