The statistics program requires that we write a program that calculates the product and the average of three integer numbers in C++.
The program in C++ where comments are used to explain each line is as follows:
#include<iostream>
using namespace std;
int main(){
//This declares the three integer values
int num1, num2, num3;
//This gets the input for the three numbers
cin>>num1>>num2>>num3;
//This calculates the average (integer division)
int avg = (num1 + num2 + num3)/3;
//This calculates the product
int prod = num1 * num2 * num3;
//This prints the average and the product, separated by a space
cout<<avg<<" "<<prod;
return 0;
}
Read more about C++ programs at:
https://brainly.com/question/17774255