javaDay06_5数组求最值
2018-11-20 03:19:12来源:博客园 阅读 ()
package com.company;
public class javaDay06_4 {
public static void main(String[] args) {
//使用数组和函数来求多个数的和
int arr1[] = new int[]{1, 2, 3, 4, 5, 6};
int sum = add(arr1);
System.out.println(sum);
int max = getMax(arr1);
System.out.println(max);
System.out.println("使用脚标判断,求最值");
int max2=getMax2(arr1);
System.out.println("max2="+max2);
int min = getMin(arr1);
System.out.println(min);
}
//该函数的功能就是将数组遍历并且将数组的元素求和
public static int add(int[] arr) {
int sum = 0;
for (int x = 0; x < arr.length; x++) {
sum = sum + arr[x];
}
return sum;
}
//获取多个整数中最大值
public static int getMax(int[] arr) {
int max = arr[0];
for (int x = 1; x < arr.length; x++) {
if (arr[x] > max) {
max = arr[x];
}
}
return max;
}
//获取多个整数中最小值
public static int getMin(int[] arr) {
int min = arr[0];
for (int x = 1; x < arr.length; x++) {
if (arr[x] < min) {
min = arr[x];
}
}
return min;
}
//获取最大值,脚标方式
public static int getMax2(int[] arr) {
int max = 0;
for (int x = 0; x < arr.length; x++) {
if (arr[x] > arr[max]) {
max=x;
}
}
return arr[max];
}
}
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:什么是FreeMaker?
- Java笔记:数组,异常,泛型 2020-06-08
- 数组小Demo 2020-05-25
- 从零开始的数组,这么设计么是为什呢? 2020-05-24
- LeetCode 面试题53 - I. 在排序数组中查找数字 I 2020-05-22
- LeetCode 34. 在排序数组中查找元素的第一个和最后一个位置 2020-05-22
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash