配列内の最小値を見つける必要がありますが、複数の結果を処理する方法を知りたいです。私の配列に含まれて[1,4,7,5,3,1]
いるとしましょう - 私の結果は1,1
. 何か案は?
double minimum = array1[0]; //sets the first to be the smallest
for (int i = 0; i < array1.length; i++) //goes through your array
{
if (array1[i] < array1[0]) //checks and replaces if necessary
{
minimum = array[i];
}
}
System.out.println( minimum ); //returns the value of the smallest