|
本帖最后由 4378430 于 2017-10-23 01:43 编辑
- <div class="blockcode"><blockquote>package aiyu.day05;
- //主方法中给定数组int[] arr= {10,20,30,40,50,60};
- //定义一个方法可以接受这个给定的数组
- //并返回这个数组中元素的最小值
- //首先分析这个题目的三个要素
- //1,这个方法的作用是什么? // 求数组中的最小值
- //2,要完成这个需求,我需要哪些参数 //吧数组给我
- //3,操作完毕之后,要不要吧结果返回出去//要返回,返回最小值,int
- public class Dome_3 {
- // 创建main方法
- public static void main(String[] args) {
- // 主方法中定义数组int[] arr= {10,20,30,40,50,60};
- int[] arr = { 10, 20, 30, 40, 50, 60 };
- // 最后一步 调用方法里面的js(名称)
- System.out.println(js(arr));
- }
- // 创建方法
- public static int js(int[] a) {// int [] --- int类型的数组 因为返回的最小值是整数型 int类型的
- // 赋值一个a[0]的数组 后面用来输出最小值
- int min = a[0];
- // 循环遍历接受int[]arr的数组元素
- for (int i = 0; i < a.length; i++) {
- // 判断数组元素中的最小值
- if (min > a[i]) {
- min = a[i];
- }
- }
- return min;// 返回值(返回最小值,利于后期的调用)
- }
- }
复制代码
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|