问答详情
源自:5-1 编程练习

循环语句能嵌套条件语句吗?

循环语句能嵌套条件语句吗?举个案例看看

提问者:丿善良的贼丶 2016-04-08 11:09

个回答

  • 玄鉴
    2016-05-04 10:42:30

    for(int i=1;i<10;i++){

    if(i==5)System.out.println("yes");

    else

    System.out.println("no");

    }


  • 慕斯0304664
    2016-04-08 13:26:58

    能够的

    for(i=1;i<10;i++){

    if(i=5)System.out.println("yes");

    else

    System.out.println("no");

    }