Browse Source

add round 5 information to smart brain

main
parent
commit
b4c4ffc28e
  1. 30
      src/main/quizproject.c
  2. 2
      src/main/quizproject.h

30
src/main/quizproject.c

@ -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() { void e_smart_brain() {
e_display_instruction(); e_display_instruction();
e_ask_questions(); e_ask_questions();
@ -306,6 +335,7 @@ void e_smart_brain() {
e_questions_r3(); e_questions_r3();
} }
guess_word_questions(); guess_word_questions();
e_anagram_questions();
score = 0; score = 0;
track_r2_score = 0; track_r2_score = 0;
} }

2
src/main/quizproject.h

@ -47,6 +47,8 @@ void e_printout_r3 (char [][100], char [][100]);
int track_r2_score = 0; int track_r2_score = 0;
void guess_word_questions(void); void guess_word_questions(void);
void print_guess_word_question (char [][100], char [][100],char [][100], int []); void print_guess_word_question (char [][100], char [][100],char [][100], int []);
void e_printout(void);
void e_anagram_questions(void);
//----smart_brain_header_end------- //----smart_brain_header_end-------
//Epic Game Headers //Epic Game Headers

Loading…
Cancel
Save