docs: 2026-03-17作业+PPT

This commit is contained in:
2026-03-30 19:24:34 +08:00
parent 0a9c136d90
commit 8f86474ad7
14 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# 九九乘法表
n = 9
for i in range(1, n + 1):
for j in range(1, i + 1):
print(j, '*', i, '=', i * j, sep=" ", end="\t")
print()