diff options
| author | James Lawrance <[email protected]> | 2021-11-23 21:29:11 -0800 |
|---|---|---|
| committer | James Lawrance <[email protected]> | 2021-11-23 21:29:11 -0800 |
| commit | ea93e6d7dbe2ef6e8bfc58b6feeb07ba3809ec3f (patch) | |
| tree | 7eba8abd196d77a6387556e7054967298c6e0d09 /CST116F2021-Lab8/Header.h | |
| parent | Add online IDE url (diff) | |
| download | cst115-lab8-jemersonlawrance-master.tar.xz cst115-lab8-jemersonlawrance-master.zip | |
Diffstat (limited to 'CST116F2021-Lab8/Header.h')
| -rw-r--r-- | CST116F2021-Lab8/Header.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/CST116F2021-Lab8/Header.h b/CST116F2021-Lab8/Header.h new file mode 100644 index 0000000..eb54d03 --- /dev/null +++ b/CST116F2021-Lab8/Header.h @@ -0,0 +1,19 @@ +#pragma once +#include <iostream> +#include <iomanip> +#include <fstream> +#include <cstring> +#include <string> + +using namespace std; + +//13b +void getInput(int valuesList[], int& VALUE); +void calculateLength(int valuesList[], int& VALUE, int& valuesTotal); +void lowestToHighest(int valuesList[], int& VALUE, int& valuesTotal, int reorderList[], int& reorderTotal); +void calculateMedian(int valuesList[], int& VALUE, int& valuesTotal); + +//13c +int checkFile(); +void createFile(); +void formatData(); |