Question: Write a method that will ask for user input until user inputs the String no . Allow the user to input any capitalization of the

Write a method that will ask for user input until user inputs the String no. Allow the user to input any capitalization of the String no(no,No,NO,nO) Also, have the method return the number of loops.
Assume that a Scanner object input has already been created.
public int loopTillNo()
{
int count =0;
String nextLine ="";
while(!nextLine.equals("no"))
{
nextLine = input.nextLine();
count++;
}
return count;
}
Incorrect Answer
public int loopTillNo()
{
int count =0;
String nextLine ="";
while(nextLine.toLowerCase().equals("no"))
{
nextLine = input.nextLine();
count++;
}
return count;
}
public int loopTillNo()
{
int count =0;
String nextLine ="";
while(nextLine.equals("no"))
{
nextLine = input.nextLine();
count++;
}
return count;
}
Correct Answer
public int loopTillNo()
{
int count =0;
String nextLine ="";
while(!nextLine.toLowerCase().equals("no"))
{
nextLine = input.nextLine();
count++;
}
return count;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!