I want to input character from user.If user inputs character 'Y' then continue else exit from application. For looping I am using do-while. Condition for application is used in while block. But it's not working.Whatever user inputs application doesn't exit and continue.
char choice='\u0000';
do
{
System.out.println("Enter Y to continue or N to exit");
choice=(char)System.in.read();
}
while(choice!='N');
I think it would be easyer if you do it like this:
After that you can show if he typed N or Y and continue with your code