在Java数组中找到第3个最小的数字。
示例
以下是必需的程序。
public class Tester {
public static int getThirdSmallest(int[] a) {
int temp;
//对数组排序
for (int i = 0; i < a.length; i++) {
for (int j = i + 1; j < a.length; j++) {
if (a[i] > a[j]) {
temp = a[i];
a[i] = a[j];
a[j] = temp;
}
}
}
//返回第三小元素
return a[2];
}
public static void main(String args[]) {
int a[] = { 11,10,4, 15, 16, 13, 2 };
System.out.println("Third Smallest: " +getThirdSmallest(a));
}
}输出结果
Third smallest: 10
热门推荐
10 圣诞祝福语简短小学
11 祖国七十华诞简短祝福语
12 老师送的祝福语简短
13 生日祝福语大全女生简短
14 祝女性生日祝福语简短
15 牛年女神节祝福语简短
16 情人表白祝福语简短大气
17 老公开业祝福语简短
18 官宣新年祝福语简短