Computer Applications

Declare and instantiate a one dimensional int array named evenNums with five elements. Use an initialiser list that contains the first five even integers, starting with 11.

Java Arrays

18 Likes

Answer

int evenNums[] = {12, 14, 16, 18, 20};

Answered By

10 Likes


Related Questions