char chars[] = new char[26];
for (int i = 0; i < chars.length; i++) {
chars[i] = (char) ('A' + i);
}
for (int i = 0; i < chars.length; i++) {
System.out.print(chars[i] + " ");
}
System.out.println("--------------求数组中最大值,并输出最大值和它的索引!--------------");
int arr1[] = { 1, 4, 3, 77, 55, 32, -1, 59 };
int maxValue = arr1[0];
int maxIndex = arr1[0];
for (int i = 1; i < arr1.length; i++) {
if (maxValue < arr1[i]) { // 当前值和maxValue作比较
maxValue = arr1[i]; // 如果当前值大于maxValue就把当前值赋值给maxValue变量
maxIndex = i; // 索引值赋值
}
}
System.out.println("arr1数组中最大值为:" + maxValue + ",索引值为: " + maxIndex);
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。