Statistics are often calculated with varying amounts of input data. Write a program that takes any number of non-negative integers as input, and outputs the average and max. A negative integer 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 is input. This is the code I am using: import java.util.Scanner; public class LabProgram { public static void main(String[] args) { Scanner input = new Scanner(System.in); int[] a= new int[100]; int i=0, sum=0; double avg, max=0; while(true){ a[i]=input.nextInt(); if(a[i]<0) break; else sum=sum+a[i]; // sum the numbers i++; } avg=(double)sum/i; //compute average for(int j=0; j

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter6: Looping
Section: Chapter Questions
Problem 2PE
icon
Related questions
Question

Statistics are often calculated with varying amounts of input data. Write a program that takes any number of non-negative integers as input, and outputs the average and max. A negative integer 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 is input.

This is the code I am using:

import java.util.Scanner;

public class LabProgram {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int[] a= new int[100];
int i=0, sum=0;
double avg, max=0;

while(true){
a[i]=input.nextInt();
if(a[i]<0)
break;
else
sum=sum+a[i]; // sum the numbers
i++;
}
avg=(double)sum/i; //compute average
for(int j=0; j<i;j++)
if(max<a[j])
max=a[j];
System.out.printf("%.2f %.2f\n", avg,max); // print result
}
}

These are the outputs I am getting and I cannot figure out how to remove the decimal. 
 
Input
15 20 0 5 -1
Your output
10.00 20.00
Expected output
10 20
 
 
Input
2 2 2 2 12 0 8 4 -5
Your output
4.00 12.00
Expected output
4 12
 
 
Input
5 -1
Your output
5.00 5.00
Expected output
5 5
 
 
Input
0 -1
Your output
0.00 0.00
Expected output
0 0
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Random Class and its operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning