-2
I’m unable to make my verification structure work, I can’t after typing stop, display the message and the program continue the loop
.
/* * To change this License header, Choose License Headers in Project Properties. * To change this template file, Choose Tools | Templates * and open the template in the editor. */ package javaapplication4;
/**
*
* @author Deny
*/
import java.util.Scanner;
public class JavaApplication4 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
String resposta;
String r;
String respostaVerificadora;
String[] camgirls = new String[50000];
Scanner scan = new Scanner(System.in);
//cadastro de cam girls
for(int c=0; c < 50000; c++) {
System.out.println("Digite o nome da camgirl de numero: "+c);
//ISSO AQUI NAO TA FUNCIONANDO EU DIGITO PARE AQUI
resposta = scan.next();
//PARA DAR IGUAL AQUI
respostaVerificadora = "pare";
//E NA HORA DE VERIFICAR QUE OS DOIS SAO IGUAIS, O JAVA NAO RECONHECE E NAO ENTRA NO IF
if(resposta == respostaVerificadora ) {
System.out.println("parei");
break;
}
}
System.out.println("PROGRAMA FINALIZADO");
}
}