5 lines
103 B
Python
5 lines
103 B
Python
count = 0
|
|
for x in range(1,100):
|
|
if x % 2 == 0:
|
|
count += 1
|
|
print(f"共有{count}个偶数") |