-3
Hello, I’m new to programming and would like to know if I can stop this loop when the user type "Quit" in the dialog box "Enter your name".
public class PeriodoDeVacinacao {
public static void main(String[] args) {
// TODO Auto-generated method stub
String nome = null;
int idade;
while(nome != "Sair") {
nome = JOptionPane.showInputDialog("Digite o seu nome: ");
idade = Integer.parseInt(JOptionPane.showInputDialog("Digite a sua idade: "));
if (idade >= 60 && idade <= 69) {
JOptionPane.showMessageDialog(null, nome + ", você deverá tomar sua vacina em: ABRIL!");
} else if (idade >= 50 && idade <= 59) {
JOptionPane.showMessageDialog(null, nome + ", você deverá tomar sua vacina em: MAIO!");
} else if (idade >= 40 && idade <= 49) {
JOptionPane.showMessageDialog(null, nome + ", você deverá tomar sua vacina em: JUNHO!");
} else if (idade <= 39) {
JOptionPane.showMessageDialog(null, nome + ", você deverá tomar sua vacina em: JULHO!");
} else if (idade >= 70) {
JOptionPane.showMessageDialog(null, nome + ", você já pode tomar sua vacina!");
}
}
}
}