摘要: int a=1; int b=0; int c=1; while(c<1000){ c=a+b; a=b; b=c; if(c<1000) { System.out.print(c + "\t"); } } 阅读全文
posted @ 2020-10-23 12:11 BAILANGL 阅读(70) 评论(0) 推荐(0) 编辑
摘要: public class JumpXunHuan { /** * @author bailanglang * Description 主方法 */ public static void main(String[] args) { //在循环之前加标记,使用时break 标记 即可跳出 jump: f 阅读全文
posted @ 2020-10-23 11:44 BAILANGL 阅读(141) 评论(0) 推荐(0) 编辑