C -  Given 4 integers, output their product and their average using integer arithmetic.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 19PE
icon
Related questions
Question

C - 

Given 4 integers, output their product and their average using integer arithmetic.

 

Part 1
Given 4 integers, output their product and their average using integer arithmetic.
Ex: If the input is:
8 10 5 4
the output is:
1600 6
Note: Integer division discards the fraction. Hence the average of 8 10 5 4 is output as 6, not 6.75.
Note: The test cases include four 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, four 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 product and average using floating-point arithmetic.
Output each floating-point value with three digits after the decimal point, which can be achieved as follows:
printf("%0.31f", yourValue);
Hint: Convert the input values from int to double.
Ex: If the input is 8 10 5 4, the output is:
1600 6
1600.000 6.750
Note that fractions aren't discarded, and that overflow does not occur for the test case with large values.
1 #include <stdio.h>
2
3 int main(void) {
4
5
6
7
8
9
10
11
12
13
int userNum1;
int userNum2;
int userNum3;
int userNum4;
/* Type your code here. */
return 0;
Transcribed Image Text:Part 1 Given 4 integers, output their product and their average using integer arithmetic. Ex: If the input is: 8 10 5 4 the output is: 1600 6 Note: Integer division discards the fraction. Hence the average of 8 10 5 4 is output as 6, not 6.75. Note: The test cases include four 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, four 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 product and average using floating-point arithmetic. Output each floating-point value with three digits after the decimal point, which can be achieved as follows: printf("%0.31f", yourValue); Hint: Convert the input values from int to double. Ex: If the input is 8 10 5 4, the output is: 1600 6 1600.000 6.750 Note that fractions aren't discarded, and that overflow does not occur for the test case with large values. 1 #include <stdio.h> 2 3 int main(void) { 4 5 6 7 8 9 10 11 12 13 int userNum1; int userNum2; int userNum3; int userNum4; /* Type your code here. */ return 0;
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Datatypes
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
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