System.out.println("Example2c: ");
int A = 85;
int B = 65;
String out = "\tNot a valid input!";
if (x > A) out = "\tWell done!";
if (x > B) out = "\tOK!";
if (x > 0) out = "\tNot good!";
System.out.println(out);
I input 90 and it print out "Not good". Wth? 90>85, 90>65, 90>0 so shouldn't it print out all the of them except not a valid input?