Skip to content

Instantly share code, notes, and snippets.

@avh4
Created September 1, 2009 03:47
Show Gist options
  • Save avh4/178892 to your computer and use it in GitHub Desktop.
Save avh4/178892 to your computer and use it in GitHub Desktop.
High-Low notes
JOptionPane.showInputDialog("Hello <Name>");
String answer = JOptionPane.showInputDialog("Hi, what's your name?");
JOptionPane.showInputDialog(answer + " doesn't know anything about computer programming.");
String yourPassword = JOptionPane.showInputDialog("Enter Your Password");
if (yourPassword.equals("secret password"))
{
JOptionPane.showInputDialog("You got the secret password!");
}
int secretNumber = new Random().nextInt(100);
int guesses = 0;
guesses = guesses + 1;
JOptionPane.showInputDialog("It took you " + guesses + " tries to guess my number.");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment