Skip to content

Instantly share code, notes, and snippets.

@mfilippov
Created March 13, 2012 17:57
Show Gist options
  • Save mfilippov/2030281 to your computer and use it in GitHub Desktop.
Save mfilippov/2030281 to your computer and use it in GitHub Desktop.
Echo
import java.util.Scanner;
public class Program
{
public static void Menu(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.println("Welcome");
while(true) {
System.out.print("Please enter you ZIP(quit for exit):");
String value = in.nextLine();
if (value.equals("quit")) {
break;
}
System.out.println(value);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment