编辑代码
Swift代码
5.2.4
运行
for
i
in
1
..
.9
{
for
j
in
1
..
.i
{
print
(
"\(j) * \(i) = \(i * j)\t"
,
terminator
:
""
) }
print
(
""
) }