All pastes #2091445 Raw Edit

Untitled

public text v1 · immutable
#2091445 ·published 2011-10-19 14:59 UTC
rendered paste body
import uk.ac.warwick.dcs.util.io.IO;

public class test
{
    
    public static void main(String[] args)
	{
		int option;
		do {
			option = IO.readint("Enter an option: ");	
		} while (option != 4);
		System.out.println("Goodbye!");
	}
}