Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started