int i;long george[];Scanner console = new Scanner(System.in);george = new long[console.nextInt()];for (i = george.length – 1; (i >= 0); –i) { george[i] = console.nextLong() * 5;}
and the following user input values
5 4 3 2 1 0
what’s the value of george.length after the last statementexecutes?
Expert Answer
An answer will be send to you shortly. . . . .