编辑代码
Python代码
3.11.0
2.7.17
运行
i
=
1
while
i<=
9
:
j
=
1
while
j<=i:
print
(j,
"*"
,i,
"="
,j*i)
j
+=
1
print
()
i
+=
1