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

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
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
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education