摘要: public class Example16 { public static void main(String [] args) { int x=1; while(x <= 4){ System.out.println("x = " + x); if(3==x){ break; } x++; } S 阅读全文
posted @ 2017-06-15 20:04 reedom1991 阅读(350) 评论(0) 推荐(0) 编辑