when i run the java programme, the latest, we want to continue run it, how to work.
........
System.out.println("Do you want to continue?(y,n)");
String input_4 = keyboard.readLine();
if (input_4 == y) ?????
// there is a wrong in here
System.out.println("you want to continue!");
else
System.out.println("Thank you!");
but it does'n run! what is wrong??
thank you!!