Good afternoon,
I have some strings that come from testing. Example:
String teste2 = (nB < 0.0 && m1 <= j ? "OK" : "Não passa!");
String teste3 = (nB < 0.0 && m2 <= j ? "OK" : "Não passa!");
String teste4 = (nB > 0.0 && m2 <= 35.0 ? "OK" : "Não passa!");
String teste5 = (nB > 0.0 && m2 <= 35.0 ? "OK" : "Não passa!");
I would like to summarize everything in a single string. In this case, if any of the tests showed the message "Do not go!" my summary string would return "Do not pass!" otherwise it would return "OK". The problem is that with the following code it always returns "Do not go!".
String resultado = (teste2.equals("Não passa!") || teste3.equals("Não passa!") || teste4.equals("Não passa!") || teste5.equals("Não passa!") || teste6.equals("Não passa!") || teste7.equals("Não passa!") || teste8.equals("Não passa!") || teste9.equals("Não passa!") || teste10.equals("Não passa!") ? "Não passa!" : "OK");
What am I doing wrong? Thankful.