/*
 * File: PrintEvenNumbers.java
 * --------------------
 * Prints out the first 100 even numbers, using a for
 * loop.
 */

import acm.program.*;

public class PrintEvenNumbers extends ConsoleProgram {


	public void run() {
		for(int i = 0; i < 100; i++) {
			// your code here
		}

	}













	/**
	 * Method: Init
	 * ------------
	 * This is some special code I added so that the font in
	 * the programs is larger. You can ignore it, and you don't
	 * need an init in your programs!
	 */
	public void init() {
		// used to make the font visible in lecture...
		setFont("Courier-24");
	}
}

