|
|
@ -299,6 +299,35 @@ void print_guess_word_question (char guessWord[][100], char guessSolution[][100] |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void e_printout() { |
|
|
|
|
|
|
|
|
|
|
|
printf("\t\t---------------------------Round5-----------------------------\n\n"); |
|
|
|
printf("\t\t >>You are represented with an Anagram in each question.<<\n"); |
|
|
|
printf(" >>Determine what word it is.<<\n\n"); |
|
|
|
printf("\t\t-------------------------------------------------------------\n\n"); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
void e_anagram_questions() { |
|
|
|
char questions[][100] = { |
|
|
|
"development", |
|
|
|
"international", |
|
|
|
"pilgrimage", |
|
|
|
"operation", |
|
|
|
"population", |
|
|
|
"progress" |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
e_printout(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void e_smart_brain() { |
|
|
|
e_display_instruction(); |
|
|
|
e_ask_questions(); |
|
|
@ -306,6 +335,7 @@ void e_smart_brain() { |
|
|
|
e_questions_r3(); |
|
|
|
} |
|
|
|
guess_word_questions(); |
|
|
|
e_anagram_questions(); |
|
|
|
score = 0; |
|
|
|
track_r2_score = 0; |
|
|
|
} |
|
|
|