题目:打印出如下图案(菱形)
*
***
******
********
******
***
*
- class ForForTest
- {
- public static void main(String[] args)
- { //上半部分
- for (int x=0;x<4 ;x++ )
- {
- for (int y=x;y<4;y++ )
- {
- System.out.print(" ");
- }
- if (x==0)
- {
- System.out.print("*");
- }
- for (int z=0;z<3*x ;z++ )
- {
- System.out.print("*");
- }
- System.out.println();
- }
- //System.out.println("........................");
- //下半部分
- for (int a=0;a<3 ;a++ )
- {
- for (int b=0;b<=a+1 ;b++ )
- {
- System.out.print(" ");
- }
- for (int c=3*a;c<6;c++ )
- {
- System.out.print("*");
- }
- if (a==2)
- {
- System.out.print("*");
- }
- System.out.println();
- }
- }
- }
复制代码 |
|