用户7279352

个人签名

2篇博客

编写程序打印下图案

用户72793522019-01-06 10:30

* * * * * * * * * *

* * * * * * * * *

* * * * * * * *

* * * * * * *

* * * * * *

* * * * *

* * * *

* * *

* *

*


public class Snow {

public static void main(String[] args) {
// TODO Auto-generated method stub
for (int i = 10; i >0; i--) {
for (int j = 0; j < i; j++) {
System.out.print("* ");
}
System.out.println();
}
}

}