|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package
practiceGO;
/*
* *
* **
* ***
* ****
* *****
*
*/
public
class
Cto {
public
static
void
main(String[] args) {
for
(
int
i=
4
; i>=
0
; i--){
for
(
int
j=
1
; j<=
5
; j++){
if
((i-j)>=
0
) {
System.out.print(
" "
);
}
else
{
System.out.print(
"*"
);
}
}
System.out.println();
}
}
}
|
运行结果:
|
1
2
3
4
5
|
*
**
***
****
*****
|
本文转自yeleven 51CTO博客,原文链接:http://blog.51cto.com/11317783/1769220