[Solved] Boards equals 0 [closed]
int[] numbers = new int[5]; .. System.out.println(numbers[0]); That would print 0 as well. An array of integers without setting a value will have 0 by default. If you receive x = 480, y = 360, num2 = 2 (we don’t know num1), lets assume num1=1 X[num1-1] = x; Y[num1-1] = y; this would be X[1-1] … Read more