摘要:
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"); } } 阅读全文
摘要:
public class JumpXunHuan { /** * @author bailanglang * Description 主方法 */ public static void main(String[] args) { //在循环之前加标记,使用时break 标记 即可跳出 jump: f 阅读全文