黑马程序员技术交流社区
标题:
获取最值
[打印本页]
作者:
强晨曦
时间:
2015-8-28 18:01
标题:
获取最值
lass Test_Array1 {
public static void main(String[]args) {
int[] arr = {1,2,3,4,5};
print(arr);
}
public static void print(int[] arr) {
for (int x=0; x<arr.length; x++) {
System.out.print(arr[x]+" ");
}
}
}
数组获取最值(获取数组中的最大值最小值)
class Test_Array2 {
public static void main(String[]args) {
int[] arr = {13,6,5,10,7,8};
int max = printMax(arr);
System.out.println("max="+max);
}
//已知数组,写一个方法,求出数组中的最大值。
public static int printMax(int[] arr) {
int max = arr[0];
for (int i=1; i<arr.length; i++) {
if (arr[i]>max) {
max = arr[i];
}
}
return max;
}
}
作者:
插兜
时间:
2015-8-28 18:18
good,这个可以,复习了
作者:
徐雪涛xuxuetao
时间:
2015-8-28 19:56
写的不赖 受教啦
作者:
shdosh
时间:
2015-8-28 21:04
不错继续努力!
作者:
哈哈哈欠虫
时间:
2015-8-28 21:38
谢谢分享,收藏了,哈哈哈哈
作者:
hjja1
时间:
2015-8-28 22:09
{:3_46:}顶一下。。。
作者:
陈劲松
时间:
2015-8-28 22:22
和我写的一样!
作者:
横创
时间:
2015-8-28 22:28
赞一个!
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2