This commit is contained in:
2025-08-05 09:19:34 +08:00
commit 584548d006
1696 changed files with 53855 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
count = 0
for x in range(1,100):
if x % 2 == 0:
count += 1
print(f"共有{count}个偶数")