sprog3.cpp.html


/* fill in your name, the course and assignment,
followed by a short description of the program */


#include <iostream>
#include <cmath>

using namespace std;


//explains program to user and directs them to enter appropriate values.

void printDirections();

//returns the arithmetic mean of the four arguments.
double  average(double s1, double s2, double s3, double s4);

//returns the standard deviation of the four arguments.
double stdDev(double s1, double s2, double s3, double s4);



// ======================
=============
//     main function
// ======================
=============
int main()
{

}


// ===================================
//     print directions
// ======================
=============
//explains program to user and directs them to enter appropriate values.

void printDirections()
{

}

// ===================================
//     compute average
// ======================
=============
//returns the arithmetic mean of the four arguments.

double  average(double s1, double s2, double s3, double s4)

{

}

// ===================================
//     compute standard deviation
// ===================================

//returns the standard deviation of the four arguments.

double stdDev(double s1, double s2, double s3, double s4)

{

}