码迷,mamicode.com
首页 > 编程语言 > 详细

寻找数组中最大值

时间:2015-03-11 14:55:51      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:java   蓝桥杯   

/**
 * 对于给定整数数组a[],寻找其中最大值,并返回下标
 */
import java.util.*;
import java.io.*;


public class 寻找数组中最大值 {


public static void main(String[] args) {
Scanner in = new Scanner(new BufferedInputStream(System.in));
int n = in.nextInt();
int[] a = new int[n];
for (int i = 0; i < n; i++)
a[i] = in.nextInt();
int max = 0;
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
if (a[max] < a[j]) {
max = j;
}
}
}
System.out.println(a[max] + " " + max);
}
}

寻找数组中最大值

标签:java   蓝桥杯   

原文地址:http://blog.csdn.net/a736933735/article/details/44197571

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!