Files
max015/T11/P04.py
2025-02-01 02:04:08 +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)