Quiz: First Five Primes
Declare an array primes containing the first five primes (in one line). |
int[] primes = { 2, 3, 5, 7, 11 }; |
Declare an array primes containing the first five primes (in one line). |
int[] primes = { 2, 3, 5, 7, 11 }; |