给定直角梯形的列数和行数,通过函数调用,输出一个直角梯形,函数原型如下: void printTrapezoid(int rows,int cols); 第一个参数为梯形的行数,第二个参数为梯形的列宽。样例输出 Copy **** ***** ******
时间: 2023-11-25 10:50:02 浏览: 87
```python
def printTrapezoid(rows, cols):
for i in range(rows):
for j in range(cols):
if j < cols - i - 1:
print(' ', end='')
else:
print('*', end='')
print()
printTrapezoid(3, 5) # 输出:
# ****
# *****
# *******
```
--相关问题--:
1. 如何在Python中实现图像的旋转操作?
2. 如
阅读全文