0
I want you to have a loop when typing the number for "yes": while(resp.equals(cont))
and while(!1.equals(cont))
.
import java.util.Scanner;
public class umm_whilezinho {
public static void main(String[] args) {
Scanner in = new Scanner (System.in);
int qtf = 0;
int qtm = 0;
String gen;
int cont = 0;
System.out.println("Qual o seu gênero? (Feminino ou masculino) ");
gen = in.next();
while(!1.equals(cont)) {
if(gen == ("feminino")) {
++qtf;
if(gen ==("Feminino"));
++qtf;
if(gen == ("Masculino"))
++qtm;
if(gen == ("masculino"))
++qtm;
}
System.out.println("Deseja adicionar mais uma pessoa? (Sim = 1, Não = 2)");
cont = in.nextInt();
}
System.out.println("Quantidade de mulheres: "+qtf);
System.out.println("Quantidade de homens: "+qtm);
}
}
now I understand, thank you very much!
– Alguma Duda