I created an array that has 120, 200, and 016 and when i print the array, the 016 appears as 14. Why is this?
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int[] x = {120, 200, 016};
for (int i = 0; i < x.length; i++) {
System.out.print (x[i] + " ");
}
}