package com.itheima; import java.util.Scanner; /* * 需求:键盘录入一个月份,输出该月份对应的季节。 * 一年有四季 *...
package com.itheima; import java.util.Scanner; /* * 需求:键盘录入一个月份,输出该月份对应的季节。 * 一年有四季 *...
ackage com.itheima_01; /* * 方法:其实就是完成特定功能的代码块 * * 定义格式: * 修饰符 返回值类型 方法名(参数类型 参数名1,参数类...
ackage com.itheima_04;/* * 数组获取最值(获取数组中的最大值最小值) */public class ArrayTest2 {public stati...
package com.itheima_01; /* * 定义两个数组,先定义一个数组,赋值,输出。然后定义第二个数组的时候把第一个数组的地址赋值给第二个数组。 * 然后给第...
ackage com.itheima_01; /* * 数组:存储同一种数据类型的多个元素的容器。 * * 定义格式: * A:数据类型[] 数组名; (推荐的方式) *...
package com.itheima; import java.util.Random; /* * Random:用于产生随机数 * * 使用步骤: * A:导包 * ...
package com.itheima_07; /* * continue:继续的意思 * 使用场景: * 循环中 * 注意: * 离开使用场景是没有意义的 * 作用...
package com.itheima_06; /* * do...while循环的基本格式: * do { * 循环体语句; * }while(判断条件语句)...
ackage com.itheima_05; /* * while循环语句的基本格式: * while(判断条件语句) { * 循环体语句; * } * 扩展格...
package com.itheima_04; /* * 需求:获取数据1-5和5-1 */ public class ForTest { public static voi...
package com.itheima_03; import java.util.Scanner; /* * switch语句格式: * switch(表达式) { * ...
package com.itheima_02; /* * if语句有三种格式。 * * if语句格式1: * if(关系表达式) { * 语句体; * } * ...