Let's get started with a program that uses a while loop!
Open Eclipse
Right-Click on your edu.buffalostate.cis425.fa10.exercises..your-username
Choose: File -> New -> class
In the Name: textbox type: Thirteens
Click: Finish
Copy the Thirteens.java Template (Java) code (below)
Paste that code into your new Thirteens class in the editor
Change both occurrences of put-your-username-here
Replace blank on these lines: int[] thirteens = new int[__];
while (numFound < __) {
System.out.println("First __ multiples of 13:");
for (int i = 0; i < __; i++) {
line with an integer between 5 and 20
What would be a better way to declare the array size?