- class w
- {
- public static void main(String[] args)
- {
-
- //w.x();
- w.a();
- //w.s();
- }
- public static void a(){
- for(int x=0;x<8;x++){
- System.out.print("\t");
- for(int y=x;y<8;y++){
- System.out.print(" ");
- }
-
- for(int z=0;z<x;z++){
- if(x<2){
- System.out.print(" *");
- }
- else{
- if(z>=1&z<(x-1))
- System.out.print(" ");
- else
- System.out.print(" *");
- }
- }
- System.out.println();
- }
-
- for(int x=0;x<8;x++){
- System.out.print("\t");
- for(int y=0;y<=x;y++){
- System.out.print(" ");
- }
- for(int z=x;z<8;z++){
- if(z>x&z<7)
- System.out.print(" ");
- else
- System.out.print("* ");
-
- }
- System.out.println();
- }
- }
- }
复制代码 |
|