- <P>/*
- 需求:在控制台输如下的形状
- ----*
- ---* *
- --* * *
- ---* *
- ----*</P>
- <P>把菱形分为 上下两部分考虑;
- */
- class FunctionDemo {
- public static void main(String[] args) {
- for (int x=0;x<3;x++) {
- for (int y=x;y<=3;y++) {
- System.out.print("-");
- }
- for (int z=0;z<=x;z++) {
- System.out.print("* ");
- }
- System.out.println();
- }
- for (int a =0;a<2;a++) {
- for(int b =0;b<=2+a;b++) {
- System.out.print("-");
- }
- for (int c=a;c<2;c++) {
- System.out.print("* ");
- }
- System.out.println();
- }
-
- }
- }</P>
复制代码 |
|