摘要:
数组的三种表达形式: 例题1: package DAY06; public class Demo4 { public static void main(String[] args) { //数组的申明 int[] arr = new int[10];//[]数组存放多少个元素 int[] arr1 阅读全文
摘要:
while循环语句 输出结果为: 注释: break终止循环 continue跳过本次循环 阅读全文
摘要:
使用Math.random随机值 //第一种随机值写法 System.out.println(Math.random()); double a1 = Math.random()*100;//整数0-99取值 int c1 = (int)(Math.random()*100+1);//整数0-100取 阅读全文
摘要:
for循环语句格式: for(初始化语句;判断条件语句;控制条件语句) {undefined 循环体语句; } 执行流程 A:执行初始化语句 B:执行判断条件语句,看其结果是true还是false 如果是false,循环结束。 如果是true,继续执行。 C:执行循环体语句 D:执行控制条件语句 E 阅读全文