大神来。。这个输出对不对。。
public class Helloworld { public static void main(String[] args) { for (int i = 1; i <10&& (i!=5); i++) { System.out.print(i); } }} 输出结果为1234.。我怎么想怎么不对。int i=1;i<10且i!=5的数在10以内不是应该是12346789吗?
public class Helloworld { public static void main(String[] args) { for (int i = 1; i <10&& (i!=5); i++) { System.out.print(i); } }} 输出结果为1234.。我怎么想怎么不对。int i=1;i<10且i!=5的数在10以内不是应该是12346789吗?
2016-05-11
举报