aboutsummaryrefslogtreecommitdiff
path: root/CST116F2021-Lab6/Header.h
blob: 224d2e49417de4a2a586ca6fd2fa806f6649fceb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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);