\xf1\xc5\xf1\x04\xfe\x80\xc0\xfc\x81\x04
时间: 2024-01-07 18:23:56 浏览: 174
xf1
以下是两种打印九九乘法表的方式:
1. 使用双层while循环的方式:
```python
i = 1
while i <= 9:
j = 1
while j <= i:
print(i, "*", j, "=", i * j, end="\t")
j += 1
i += 1
print("\n")
```
2. 使用单层while循环的方式:
```python
i = 1
j = 1
while i < 10:
print(i, "*", j, "=", i * j, end="\t")
if i == j:
print("\n")
j = 0
i += 1
j += 1
```
阅读全文