本帖最后由 iBadboy 于 2013-7-18 13:35 编辑
感觉有点累赘,有更简单的方法吗?图:
代码如下:- class LingXing
- {
- public static void main(String[] args)
- {
- for(int a=5;a>0;a--){
- for(int b=1;b<a;b++){
- System.out.print(" ");
- }
- for(int c=6;c>a;c--){
- System.out.print("*");
- }
- for(int d=5;d>a;d--){
- System.out.print("*");
- }
- System.out.println();
- }
- for(int a=5;a>0;a--){
- for(int b=6;b>a;b--){
- System.out.print(" ");
- }
- for(int c=1;c<a;c++){
- System.out.print("*");
- }
- for(int d=2;d<a;d++){
- System.out.print("*");
- }
- System.out.println();
- }
- }
- }
复制代码 |
|