diff options
| author | James Lawrance <[email protected]> | 2021-11-09 16:35:17 -0800 |
|---|---|---|
| committer | James Lawrance <[email protected]> | 2021-11-09 16:35:17 -0800 |
| commit | 9d854c291df27de63b5c16a5d6bd7a2f53123d1d (patch) | |
| tree | 06252ed78ecf2f43e5ae18173f16a2b55a3aecf1 /CST116F2021-Lab6/Header.h | |
| parent | s. (diff) | |
| download | cst116-lab6-jemersonlawrance-master.tar.xz cst116-lab6-jemersonlawrance-master.zip | |
Diffstat (limited to 'CST116F2021-Lab6/Header.h')
| -rw-r--r-- | CST116F2021-Lab6/Header.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/CST116F2021-Lab6/Header.h b/CST116F2021-Lab6/Header.h index 224d2e4..2e6fa13 100644 --- a/CST116F2021-Lab6/Header.h +++ b/CST116F2021-Lab6/Header.h @@ -2,12 +2,26 @@ #include <iostream> #include <string> +#include <cstring> using namespace std; +//11a +//10.10 Learn by Doing Exercises //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 +void displayTable(string strClubIndex[10][2], int intClubIndex[], int intClubMoneyIndex[], int repeats); + +//11c +//10.15 Programming Exercises +//function getStartup prototype +char getStartup(char userString[]); +//funtion isPalindrome prototype +int isPalindrome(char userString[]); +//function isAlphaStr prototype +int isAlphaStr(char userString[]); +//function countChar prototype +int countChar(char userString[], char& stringCheck);
\ No newline at end of file |