问题描述
给出n个数,找出这n个数的最大值,最小值,和。
输入格式
第一行为整数n,表示数的个数。
第二行有n个数,为给定的n个数,每个数的绝对值都小于10000。
输出格式
输出三行,每行一个整数。第一行表示这些数中的最大值,第二行表示这些数中的最小值,第三行表示这些数的和。
样例输入
5
1 3 -2 4 5
样例输出
5
-2
11
数据规模与约定
1 <= n <= 10000。
package algorithm.Lanqiao.基础练习; import java.util.Iterator; import java.util.Scanner; public class base4 { public static void main(String[] args) { int max, min, count; Scanner in = new Scanner(System.in); int i = 0; String str = in.nextLine(); String[] strs = str.split(" "); int[] num = new int[strs.length]; for (int j = 0; j < strs.length; j++) { num[j] = Integer.parseInt(strs[j]); } in.close(); max = min = count = num[0]; for (int j = 1; j < num.length; j++) { if (num[j] > max) { max = num[j]; } if (num[j] < min) { min = num[j]; } count += num[j]; } System.out.println(max); System.out.println(min); System.out.println(count); } }❤❤点击这里 -> 订阅PAT、GPLT天梯赛、LeetCode题解离线版❤❤