Declare and instantiate an array named scores of twenty-five elements of type int.
Language: Java
Challenge:
Declare and instantiate an array named scores of twenty-five elements of type int.
SOLUTION:
Language: Java
Challenge:
Declare and instantiate an array named scores of twenty-five elements of type int.
Solution:
int[] scores = new int[25];
Posted in Java, Learn To Code