摘要:
1、定义方式: 2、数组的复制 方法一: 方法二: 阅读全文
摘要:
public static void main(String[] args) { System.out.println("猜数字游戏开始啦!"); System.out.println("请输入1-100之间的数字"); Random ran = new Random();//创建一个随机数生成器 int ranNum = ran.... 阅读全文
摘要:
待写。。。 continue和 break的区别: 1、continue的作用是本次循环结束,继续下一次循环 上述循环的输出结果为数字:1/3/5/7/9 2、break的作用是跳出整个循环 上述代码的输出结果为:0/1 阅读全文