I have a homework assignment that basically takes user input to create a golf game, asking how many holes to play, what par each hole is, and randomly generates what the person got on that hole, and prints it out. at the end, it asks the user to play again, enter y or Y for yes and n or N for no, etc. everything in my program works fine, except I cant quite get the play again function to work. here is my code, in particular, my main and the play again method:
int main() {
int holes, par, strokes, count = 1, low, high, go;
char *shotName;
go = 1;
while (go != 0) {
count = 1;
holes = readHoles();
do {
printf("\nHole number: %i\n", count);
par = readPar(holes);
low = 1;
high = par + 5;
strokes = calcStrokes(low, high);
shotName = getName(par, strokes);
printStatement(count, par, strokes, shotName);
count++;
}while (count <= holes);
go = goAgain();
}
return 0;
}
int goAgain() {
char *temp;
printf("\nWould you like to play again(Y/N)? " );
scanf("%s", temp);
while (temp != 'y' || temp != 'Y' || temp != 'n' || temp != 'N') {
printf("\nI am sorry that is invalid -- try again\n");
printf("Would you like to play again(Y/N)? " );
scanf("%c", &temp);
}
if (temp == 'y' || temp == 'Y') {
return 1;
} else {
return 0;
}
}
I guess im just confused on how to make this work using while loops or do while loops. This works, but when i run the program and get to the point where i have to input yes or no, anything i type causes the program to crash suddenly. and I dont know what to do. basically, i want the user to input something, and if its a yes, play the entire game again, if no, end the loop, and if its something else, give them an error and prompt them again. any help is appreciated its due tonight! :/ thanks