Answered step by step
Verified Expert Solution
Question
1 Approved Answer
2.19 CH2 LAB: Simple statistics Part 1 Given 3 integers, output their average and their product, using integer arithmetic. If the input is 10 20
2.19 CH2 LAB: Simple statistics Part 1 Given 3 integers, output their average and their product, using integer arithmetic. If the input is 10 20 5, the output is: 11 1000 Note: Integer division discards the fraction. Hence the average of 10 20 5 is output as 11, not 11.6667. Note: The test cases include three very large input values whose product results in overflow. You do not need to do anything special, but just observe that the output does not represent the correct product (in fact, three positive numbers yield a negative output; wow) Submit the above for grading. Your program will fail the last test cases (which is expected), until you complete part 2 below. Part 2 Also output the average and product, using floating-point arithmetic. If the input is 10 20 5, the output is: 11 1000 11.6667 1000 Note that fractions aren't discarded, and that overflow does not occur for the test case with large values. 2.19 CH2 LAB: Simple statistics Part 1 Given 3 integers, output their average and their product, using integer arithmetic. If the input is 10 20 5, the output is: 11 1000 Note: Integer division discards the fraction. Hence the average of 10 20 5 is output as 11, not 11.6667. Note: The test cases include three very large input values whose product results in overflow. You do not need to do anything special, but just observe that the output does not represent the correct product (in fact, three positive numbers yield a negative output; wow) Submit the above for grading. Your program will fail the last test cases (which is expected), until you complete part 2 below. Part 2 Also output the average and product, using floating-point arithmetic. If the input is 10 20 5, the output is: 11 1000 11.6667 1000 Note that fractions aren't discarded, and that overflow does not occur for the test case with large values
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started