Respuesta :

Answer:

Algorithm:

Step 1: Begin

Step 2: Obtain the inputs – all the three integers

Step 3: Calculate product using the formula “a*b*c”

Step 4: Calculate sum and then with the help of sum calculate the average

Step 5: Print the value of product and average

Step 6: End

Explanation:

Program:

#include<stdio.h>

int main () {

   int a, b, c;

   printf(""Enter three numbers: "");

   scanf(""%d %d %d"", &a, &b, &c);

   int sum = a + b + c;

   int product = a * b * c;

   float avg = sum / 3.0;

   printf(“Product = %d”, product”);  

   printf(""Sum = %d, Average = %f"", sum, avg);

   return 0;

}