摘要:
1.测试while循环 while(布尔表达式){ 循环体; } 在循环干开始时,会计算一次“布尔表达式”的值,若条件为真,执行循环体。若为假,则跳出循环。 eg:求1~100的累加和 1 /* 2 * 测试while循环 3 */ 4 public class testwhile { 5 publ 阅读全文
摘要:
1.java掷骰子游戏 public class iftest { public static void main(String[] args) { System.out.println("#####掷骰子游戏#####"); System.out.println("################ 阅读全文