摘要:
break 和 continue 1 public class BreakAndContinue 2 { 3 public static void main(String[] args) 4 { 5 int i = 0; 6 outer: 7 while(true) 8 { 9 System.out 阅读全文
摘要:
tips for loops 如果有固定次数,用for 如果必须执行一次,用do_while 其他情况 用while 1. for语句 例子2.12输入一个整数,求出它的所有因子 (//代码在runoob中无法正确运行,后续安装软件后再试试) 1 import java.util.*; 2 publ 阅读全文