Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribedimage text in transcribed

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 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. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: printf("%0.21f", yourValue); Ex: If the input is 10 20 5, the output is: 11 1000 11.67 1000.00 main.c 1 #include 2 3 int main(void) { 4 int user Num1; 5 int user Num2; 6 int user Num3; 7 8 | 9 10 11 return 0; 12 } 13

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Administrator Limited Edition

Authors: Martif Way

1st Edition

B0CGG89N8Z

More Books

Students also viewed these Databases questions