更新第 12 题

This commit is contained in:
Luthics 2022-10-24 23:45:27 +08:00
parent 8de720524f
commit 603773828a
1 changed files with 4 additions and 0 deletions

4
codes/12.py Normal file
View File

@ -0,0 +1,4 @@
for i in range(9):
for j in range(i+1):
print(str(i+1)+"*"+str(j+1)+"="+str((i+1)*(j+1)),end =" ")
print("")