DAT/210 Week 3 Java LAB 4.13: Varied amount of input data

$ 7

DAT/210 Week 3 Java LAB 4.13: Varied amount of input data

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.

import java.util.Scanner;

public class LabProgram {
public static void main(String[] args) {
/* Type your code here. */
}
}

940 in stock

SKU: DAT210WK3LAB4P13 Category:

Description

DAT/210 Week 3 Java LAB 4.13: Varied amount of input data

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.

import java.util.Scanner;

public class LabProgram {
public static void main(String[] args) {
/* Type your code here. */
}
}

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.