string votes[uniqueVotes];
int currentID;
int YN; //yes or no
string ID[uniqueVotes]; //the first vote a member casts
int ID; //HogwartID number
char ADM1, ADM2, ADM3, ADM4, ADM5, ADM6, ADM7, ADM8, ADM9, ADM10; //vote on amendments
string vote; //vote for captain
It has to be declared as a constant because you are using it to define the size of an array.
constint uniqueVotes = 5;
But that's a problem because you are modifying this variable in your program. Maybe you want to use a different variables for setting the size of the array and for indexing the array.
Consider using a vector instead of an array. A vector can be used similar to an array but it has the advantage that it can be resized.