blob: 2e6fa134ea72be2fb0ad735167b26448e9c2215f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#pragma once
#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);
//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);
|