public class TwoSmallest {
public static void main(String[] args) {
Double min = Double.MAX_VALUE;
Double mintwo = Double.MAX_VALUE;
for(int i = 0; i < args.length; i++){
Double temp = Double.parseDouble(args[i]);
if(temp < min){
min = temp;
}
}
for(int i = 0; i < args.length; i++){
Double temp2 = Double.parseDouble(args[i]);
if(temp2 < mintwo && temp2 != min){
mintwo = temp2;
}
}
System.out.println(min);
System.out.println(mintwo);
}
}
Я пытаюсь найти наименьшее и 2-е наименьшее в наборе чисел, я не уверен, как это сделать.