How to modify the code below to become the user only can enter 2 times wrong PIN? After 2 times wrong PIN, the program will auto exit.
String user = "Melissa";
int pin = 123456;
int pin2;
// Prompt the user for input
do
{
String pin2String = JOptionPane.showInputDialog("Enter PIN");
pin2 = Integer.parseInt(pin2String);
}while(pin2 != pin);
// Display
JOptionPane.showMessageDialog(null, "User: "+ user);
do{loop it has something likeif (++counter > 2) { get angry... }– Gray Nov 10 '11 at 16:23