Question: Write a simple program that uses a break statement to end the while loop where the condition in while loop is always true. Test the

Write a simple program that uses a break statement to end the while loop where the condition in while loop is always true. Test the user input and if it is zero then use a break to exit or come out of the loop.

Save the code in jGRASP, then save it in c:\myjava and run it.

/******************* Name:

Date:

Notes: *******************/

import java.util.Scanner;

class WhileLoopWithBreak {

public static void main(String[] args) {

int n;

Scanner input = new Scanner(System.in);

while () {

continue;

}

else {

break;

}

}

}

}

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!