#pragma once #include #include #include 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); //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);