import javax.swing.JOptionPane; public class DoWhileDemo_WarGames_Login { public static void main(String[] args) { String command; boolean isWrongCommand; int errorCounter=0; do{ command = JOptionPane.showInputDialog("LOGIN: "); if(command.equals("Joshua")){ isWrongCommand=false; JOptionPane.showMessageDialog(null, "Greetings Professor Falken!"); if(errorCounter>0) { JOptionPane.showMessageDialog(null, "There has been \"" + errorCounter + "\" false login attempts since your last appearance."); } }else{ isWrongCommand=true; errorCounter++; } }while(isWrongCommand); } }