黑马程序员技术交流社区

标题: 共享一个菱形的打印 [打印本页]

作者: YQliang    时间: 2015-5-11 22:30
标题: 共享一个菱形的打印
  1. class w
  2. {
  3.         public static void main(String[] args)
  4.         {
  5.                
  6.                 //w.x();
  7.                 w.a();
  8.                 //w.s();
  9.         }

  10.         public static void a(){
  11.                 for(int x=0;x<8;x++){
  12.                 System.out.print("\t");
  13.                 for(int y=x;y<8;y++){
  14.                 System.out.print(" ");

  15.                 }
  16.                
  17.                 for(int z=0;z<x;z++){

  18.                         if(x<2){
  19.                 System.out.print(" *");
  20.                         }
  21.                         else{
  22.                                 if(z>=1&z<(x-1))
  23.                                         System.out.print("  ");
  24.                                 else
  25.                                         System.out.print(" *");

  26.                                 }
  27.                 }
  28.                 System.out.println();
  29.                 }
  30.                
  31.                 for(int x=0;x<8;x++){
  32.                         System.out.print("\t");
  33.                 for(int y=0;y<=x;y++){
  34.                 System.out.print(" ");
  35.                 }

  36.                 for(int z=x;z<8;z++){
  37.                         if(z>x&z<7)
  38.                                 System.out.print("  ");
  39.                                 else
  40.                 System.out.print("* ");
  41.                
  42.                 }
  43.                 System.out.println();
  44.                         }
  45.                 }
  46.         }
复制代码

作者: 魔蝎座    时间: 2015-5-11 22:44
不错,加油!!!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2