Connect with a community of experts and enthusiasts on IDNLearn.com. Our platform offers detailed and accurate responses from experts, helping you navigate any topic with confidence.
18.41 Clone of LAB: Variables/Assignments: Simple statistics
Part 1
Given 3 integers, output their average and their product, using integer arithmetic.
Ex: If the input is:
10 20 5
the output is:
11 1000
Submit the above for grading. Your program will fail the test cases (which is expected), until you complete part 2 below but check that you are getting the correct average and product using integer division.
Part 2
Using the same 3 integers, output the average and product, using floating-point arithmetic.
Output all floating-point numbers with five digits after the decimal point, which can be achieved as follows:
Put x to output with 5 decimal places
Ex: If the input is:
10 20 5
the first line of output uses integer arithmetic and the second line output uses floating-point arithmetic:
Thank you for being part of this discussion. Keep exploring, asking questions, and sharing your insights with the community. Together, we can find the best solutions. IDNLearn.com is your reliable source for accurate answers. Thank you for visiting, and we hope to assist you again.