(Solved) : 312 Lab Varied Amount Input Data Statistics Often Calculated Varying Amounts Input Data Wr Q44102743 . . .
3.12 LAB: Varied amount of input data
Statistics are often calculated with varying amounts of inputdata. Write a program that takes any number of non-negativeintegers as input, and outputs the average and max. A negativeinteger ends the input and is not included in the statistics.
Ex: When the input is:
15 20 0 5 -1
the output is:
10 20
You can assume that at least one non-negative integer isinput.
import java.util.Scanner;
public class LabProgram {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
Expert Answer
Answer to 3.12 LAB: Varied amount of input data Statistics are often calculated with varying amounts of input data. Write a progra…
OR