打印倒三角形:1外for循环内for循环,2外for循环内while循环,3外while循环内for循环,4外while循环内while循环
时间: 2023-02-06 15:43:41 浏览: 105
1. 使用外部 for 循环和内部 for 循环打印倒三角形:
```
for(int i = 0; i < 5; i++) {
for(int j = 0; j < 5 - i; j++) {
System.out.print("*");
}
System.out.println();
}
```
输出:
```
*****
****
***
**
*
```
2. 使用外部 for 循环和内部 while 循环打印倒三角形:
```
for(int i = 0; i < 5; i++) {
int j = 0;
while(j < 5 - i) {
System.out.print("*");
j++;
}
System.out.println();
}
```
输出:
```
*****
****
***
**
*
```
3. 使用外部 while 循环和内部 for 循环打印倒三角形:
```
int i = 0;
while(i < 5) {
for(int j = 0; j < 5 - i; j++) {
System.out.print("*");
}
System.out.println();
i++;
}
```
输出:
```
*****
****
***
**
*
```
4. 使用外部 while 循环和内部 while 循环打印倒三角形:
```
int i = 0;
while(i < 5) {
int j = 0;
while(j < 5 - i) {
System.out.print("*");
j++;
}
System.out.println();
i++;
}
```
输出:
```
*****
****
***
**
*
```
希望这些示例能帮助你。
阅读全文