docs: 2026-03-17作业+PPT
This commit is contained in:
7
2026-03-17/2026-03-17_hw_3.py
Normal file
7
2026-03-17/2026-03-17_hw_3.py
Normal 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()
|
||||
Reference in New Issue
Block a user