Given an array of ints named values, what does this code do??
double largest = values[0];
for (int i = 1; i < values.length; i++)
{
if (values[i] > largest)
{
largest = values[i];
}
}
There are no hints for this question.