问答详情
源自:4-14 Java 循环语句之多重循环

怎么用while多重循环打印直角三角形呢?

如题

怎么用while多重循环打印直角三角形呢?

提问者:_偏见源于无知 2016-12-08 00:13

个回答

  • qq_壁虎大魔王_0
    2016-12-14 10:27:10

    int i=1;

    int j=1;

    while(i<=3){

    while(j<=i){

    System.out.print(*);

    j++;

    }

    System.out.println();

    i++;

    }

  • qq_HereWithYou_1
    2016-12-08 01:00:28

    int i=0;

    int j=0;

    while(i<=3){

    while(j<=i){System.out.println('*');j++;}

    i++;

    }