diff options
| author | James Lawrance <[email protected]> | 2021-11-09 11:33:58 -0800 |
|---|---|---|
| committer | James Lawrance <[email protected]> | 2021-11-09 11:33:58 -0800 |
| commit | b668083055ccaf26dad01e274e40887a77071a45 (patch) | |
| tree | 91f4b9b043c205b1038744b5361d4cb9bf29f367 /CST116F2021-Lab6/Header.h | |
| parent | Add online IDE url (diff) | |
| download | archived-cst116-lab6-jemersonlawrance-b668083055ccaf26dad01e274e40887a77071a45.tar.xz archived-cst116-lab6-jemersonlawrance-b668083055ccaf26dad01e274e40887a77071a45.zip | |
s.
Diffstat (limited to 'CST116F2021-Lab6/Header.h')
| -rw-r--r-- | CST116F2021-Lab6/Header.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CST116F2021-Lab6/Header.h b/CST116F2021-Lab6/Header.h new file mode 100644 index 0000000..224d2e4 --- /dev/null +++ b/CST116F2021-Lab6/Header.h @@ -0,0 +1,13 @@ +#pragma once + +#include <iostream> +#include <string> +using namespace std; + +//function getInput prototype +void getInput(string studentClub, string presidentName, int numberOfStudents, string strClubIndex[10][2], int intClubIndex[], int& repeats); +//function calculateMoney prototype +void calculateMoney(int intClubIndex[], int intClubMoneyIndex[], int repeats); + +//function displayTable prototype +void displayTable(string strClubIndex[10][2], int intClubIndex[], int intClubMoneyIndex[], int repeats);
\ No newline at end of file |