Skip to content
Advertisement

Why do Min & Max show up as 0 in my array?

Why do Min & Max show up as 0 in this array? I tried to figure it out for a while now but I couldn’t wrap my head around it.

JavaScript

Here is the ‘min’.

JavaScript

And the ‘max’ I am not sure what the issue is.

JavaScript

||SOLVED|| Changed min and max and also added maximum(x); minimum(x); in main while removing ^^ System.out.println(“The min is “+ min(x)); ^^ ^^ System.out.println(“The max is “+ max(x));.^^

JavaScript

|Changed max|

JavaScript

|And changed min|

JavaScript

Advertisement

Answer

Here you are probably setting every element in the array to 0. And in any case, max is always going to return 0

JavaScript

And here, you are starting with min = 0 (which isn’t necessarily a value in the array) and since all the values are greater than 0, the return value is 0.

JavaScript

And honestly, it would have been very easy or you to figure this out if you’d used the debugger to step through your functions. Learning how to use a debugger is an invaluable skill!

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement