本帖最后由 段旭东 于 2013-4-19 22:25 编辑
- package com.itheima;
- /* 输入一个数字组成的数组,输出该数组的最大值和最小值
- *
- * */
- public class Test7 {
- public static void main(String[] args) {
- // 定义一个数组
- int array[] = new int[] {19, 2, 3, 4, 5, 6,88 ,1};
- //定义一个int属性的值来接收最大值
- int maxInt = 1;
- //定义一个int属性的值,来接收最小值,这里需要赋值array数组下标为0的值,直接赋值0会被判断自小的永远为0
- int minInt = array[0];
- //利用一个for循环,得到数组全部的值
- for (int i = 0; i < array.length; i++) {
- //利用Math类自带的方法max求出数组最大值
- maxInt=Math.max(maxInt,array[i]);
- //利用Math类自带的方法min求出数组最小值
- minInt=Math.min(minInt,array[i]);
- }
- System.out.println("最大值是"+maxInt);
- System.out.println("最小值是"+minInt);
- }
- }
复制代码 |
|