- class PrintLingXing
- {
- public static void main(String[] args)
- {
- for(int x=0;x<5;x++)
- {
- for(int y=x;y<4;y++)
- {
- System.out.print(" ");
- }
- for(int m=0;m<=x;m++)
- {
- System.out.print("* ");
- }
- System.out.println();
- }
- for(int x=0;x<4;x++)
- {
- for(int y=0;y<=x;y++)
- {
- System.out.print(" ");
- }
- for(int m=x;m<4;m++)
- {
- System.out.print("* ");
- }
- System.out.println();
- }
- }
- }
复制代码 |