场景

对一个int型数组,获取其中的最大值。

实现

//定义参照物
int max = a[0];
//遍历数组,获取除了0以外的所有元素,进行比较
for(int x=1; x<a.length; x++) {
if(a[x] > max) {
max = a[x];
}
}