Browse Source

million game - final set of questions and answers

main
fdlt3917 2 years ago
parent
commit
416d8492c0
  1. 60
      src/main/quizproject.c

60
src/main/quizproject.c

@ -672,50 +672,50 @@ void play_milliongame() {
int million_i = 0, million_k = 0;;
char million_user_answers[round];
char million_std_answers[round] = {'B', 'A', 'A','B', 'A', 'A','B', 'A', 'A','B', 'A', 'A','B', 'A', 'A'};
char million_std_answers[round] = {'B', 'C', 'D', 'C', 'B', 'D', 'B', 'A', 'B', 'B', 'A', 'D', 'C', 'C', 'B'};
int million_stay_in_game = 0, million_reward = 0, million_checkpoint = 0, million_count_replace = 0;
int million_lifeline_hint = 1, million_lifeline_delete = 1, million_lifeline_friend = 1;
char questions[round][256] = {
"What is the capital of France?",
"Who was the first president of the United States?",
"Which team won the most NBA championships?",
"What is the capital of France?",
"Who was the first president of the United States?",
"Which team won the most NBA championships?",
"What is the capital of France?",
"Who was the first president of the United States?",
"Which team won the most NBA championships?",
"What is the capital of France?",
"Who was the first president of the United States?",
"Which team won the most NBA championships?",
"What is the capital of France?",
"Who was the first president of the United States?",
"Which team won the most NBA championships?"
"Which Disney character famously leaves a glass slipper behind at a royal ball?",
"What name is given to the revolving belt machinery in an airport that delivers checked luggage from the plane to baggage reclaim?",
"Which of these brands was chiefly associated with the manufacture of household locks?",
"The hammer and sickle is one of the most recognisable symbols of which political ideology?",
"Which toys have been marketed with the phrase “robots in disguise”?",
"What does the word loquacious mean?",
"Obstetrics is a branch of medicine particularly concerned with what?",
"In Doctor Who, what was the signature look of the fourth Doctor, as portrayed by Tom Baker?",
"Which of these religious observances lasts for the shortest period of time during the calendar year?",
"At the closest point, which island group is only 50 miles south-east of the coast of Florida?",
"Construction of which of these famous landmarks was completed first?",
"Which of these cetaceans is classified as a “toothed whale”?",
"Who is the only British politician to have held all four “Great Offices of State” at some point during their career?",
"In 1718, which pirate died in battle off the coast of what is now North Carolina?"
};
char answers[round][4][256] = {
{ "A) Berlin", "B) Paris", "C) London", "D) Rome" },
{ "A) George Washington", "B) John Adams", "C) Thomas Jefferson", "D) James Madison" },
{ "A) Los Angeles Lakers", "B) Chicago Bulls", "C) Golden State Warriors", "D) Boston Celtics" },
{ "A) Berlin", "B) Paris", "C) London", "D) Rome" },
{ "A) George Washington", "B) John Adams", "C) Thomas Jefferson", "D) James Madison" },
{ "A) Los Angeles Lakers", "B) Chicago Bulls", "C) Golden State Warriors", "D) Boston Celtics" },
{ "A) Berlin", "B) Paris", "C) London", "D) Rome" },
{ "A) George Washington", "B) John Adams", "C) Thomas Jefferson", "D) James Madison" },
{ "A) Los Angeles Lakers", "B) Chicago Bulls", "C) Golden State Warriors", "D) Boston Celtics" },
{ "A) Berlin", "B) Paris", "C) London", "D) Rome" },
{ "A) George Washington", "B) John Adams", "C) Thomas Jefferson", "D) James Madison" },
{ "A) Los Angeles Lakers", "B) Chicago Bulls", "C) Golden State Warriors", "D) Boston Celtics" },
{ "A) Berlin", "B) Paris", "C) London", "D) Rome" },
{ "A) George Washington", "B) John Adams", "C) Thomas Jefferson", "D) James Madison" },
{ "A) Los Angeles Lakers", "B) Chicago Bulls", "C) Golden State Warriors", "D) Boston Celtics" }
{ "A) Pocahontas", "B) Sleeping Beauty", "C) Cinderella", "D) Elsa" },
{ "A) Hangar", "B) Terminal", "C) Concourse", "D) Carousel" },
{ "A) Phillips", "B) Flymo", "C) Chubb", "D) Ronseal" },
{ "A) Republicanism", "B) Communism", "C) Conservatism", "D) Liberalism" },
{ "A) Bratz Dolls", "B) Sylvanian Families", "C) Hatchimals", "D) Transformers" },
{ "A) Angry", "B) Chatty", "C) Beautiful", "D) Shy" },
{ "A) Childbirth", "B) Broken bones", "C) Heart conditions", "D) Old age" },
{ "A) Bow-tie, braces and tweed jacket", "B) Wide-brimmed hat and extra long scarf", "C) Pinstripe suit and trainers", "D) Cape, velvet jacket and frilly shirt" },
{ "A) Ramadan", "B) Diwali", "C) Lent", "D) Hanukkah" },
{ "A) Bahamas", "B) US Virgin Islands", "C) Turks and Caicos Islands", "D) Bermuda" },
{ "A) Empire State Building", "B) Royal Albert Hall", "C) Eiffel Tower", "D) Big Ben Clock Tower" },
{ "A) Gray whale", "B) Minke whale", "C) Sperm whale", "D) Humpback whale" },
{ "A) David Lloyd George", "B) Harold Wilson", "C) James Callaghan", "D) John Major" },
{ "A) Calico Jack", "B) Blackbeard", "C) Bartholomew Roberts", "D) Captain Kidd" }
};
million_instructions();
while(million_i < round && million_stay_in_game == 0){
printf("You have %d:Fifty/Fifty\t%d:Phone a Friend\t%d:Hint\t\n",million_lifeline_delete,million_lifeline_friend,million_lifeline_hint);
printf("\nYou have %d:Fifty/Fifty\t%d:Phone a Friend\t%d:Hint\t\n",million_lifeline_delete,million_lifeline_friend,million_lifeline_hint);
printf("\n%s\n",questions[million_i]);
for(int j=0;j<4;j++){

Loading…
Cancel
Save