Question: 8 . 9 LAB: Find largest number Write a program that repeatedly reads in integers until a negative integer is read. The program also keeps

8.9 LAB: Find largest number
Write a program that repeatedly reads in integers until a negative integer is read. The program also keeps track of the largest integer that
has been read so far and outputs the largest integer at the end.
Ex: If the input is:
2,7,17,4,-1
the output is:
Largest integer: 77
Assume a user will enter at least one non-negative integer.
LAB
ACTIVITY
8.9.1: LAB: Find largest number
010
LabProgram.java
Load default template...
import java.util.Scanner;
public class LabProgram {
public static void main(string[] args){
scanner scnr = new Scanner(
System.in);
/* Type your code here. */
}
}
10
Run your program as often as you'd like, before submitting for grading. Below, type any needed
input values in the first box, then click Run program and observe the program's output in the
second box.
Enter program input (optional)
 8.9 LAB: Find largest number Write a program that repeatedly reads

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!