Answered step by step
Verified Expert Solution
Link Copied!

Question

00
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 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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions