-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathex4.c
60 lines (49 loc) · 1.43 KB
/
ex4.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// (Arithmetic, Largest Value and Smallest Value) Write a program that inputs three different integers from the keyboard, then prints the sum, the average, the product, the smallest and the largest of these numbers. Use only the single-selection form of the if statement you learned in this chapter. The screen dialogue should appear as follows:
// Enter three different integers: 13 27 14
// Sum is 54
// Average is 18
// Product is 4914
// Smallest is 13
// Largest is 27
#include <stdio.h>
int main()
{
int num1, num2, num3;
int sum, product, smallest, largest;
float average;
// Input three different integers
printf("Enter three different integers: ");
scanf("%d %d %d", &num1, &num2, &num3);
// Calculate sum
sum = num1 + num2 + num3;
// Calculate average
average = (float)sum / 3;
// Calculate product
product = num1 * num2 * num3;
// Determine smallest and largest
smallest = num1;
largest = num1;
if (num2 < smallest)
{
smallest = num2;
}
else if (num2 > largest)
{
largest = num2;
}
if (num3 < smallest)
{
smallest = num3;
}
else if (num3 > largest)
{
largest = num3;
}
// Display results
printf("Sum is %d\n", sum);
printf("Average is %.2f\n", average);
printf("Product is %d\n", product);
printf("Smallest is %d\n", smallest);
printf("Largest is %d\n", largest);
return 0;
}