|
COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
|
#include <iostream>#include <cmath>#include <iomanip>
Go to the source code of this file.
Functions | |
| int | main () |
| double | mean_5 (double a, double b, double c, double d, double e) |
| double | sd_5 (double mean, double a, double b, double c, double d, double e) |
| int main | ( | void | ) |
Definition at line 15 of file meanSD.cpp.
References mean_5(), and sd_5().

| double mean_5 | ( | double | a, |
| double | b, | ||
| double | c, | ||
| double | d, | ||
| double | e ) |
Definition at line 6 of file meanSD.cpp.
Referenced by main().

| double sd_5 | ( | double | mean, |
| double | a, | ||
| double | b, | ||
| double | c, | ||
| double | d, | ||
| double | e ) |
Definition at line 10 of file meanSD.cpp.
Referenced by main().
