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 nonoNoNOnO Also, have the method return the number of loops.
Assume that a Scanner object input has already been created.
public int loopTillNo
int count ;
String nextLine ;
whilenextLine.equalsno
nextLine input.nextLine;
count;
return count;
Incorrect Answer
public int loopTillNo
int count ;
String nextLine ;
whilenextLinetoLowerCaseequalsno
nextLine input.nextLine;
count;
return count;
public int loopTillNo
int count ;
String nextLine ;
whilenextLineequalsno
nextLine input.nextLine;
count;
return count;
Correct Answer
public int loopTillNo
int count ;
String nextLine ;
whilenextLine.toLowerCaseequalsno
nextLine input.nextLine;
count;
return count;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
