Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

create a c++ program that computes the sum and average of three numbers the user

ID: 3535596 • Letter: C

Question

create a c++ program that computes the sum and average of three numbers the user enters. Implement the program using two functions defined with the following headers.

double sum(int num1, int num2, int num3);

double average (int num1, int num2, int num3); The definition of the function average must include a call to the function sum.
(The program is called the visual basic C++) double average (int num1, int num2, int num3); The definition of the function average must include a call to the function sum.
(The program is called the visual basic C++)

Explanation / Answer

#include #include int main() { float n1, n2 ; float Sum, Average ; Cout n1; Cin>> n2; Cin>>n3; Sum = n1+ n2+n3; Average = Sum / 3 ; Cout