Browse Source

Added facts (v_AllAboutSpace)

main
fdlt3859 2 years ago
parent
commit
4429637eb2
  1. 10
      src/main/quizproject.c

10
src/main/quizproject.c

@ -2965,9 +2965,11 @@ void v_allaboutspace(void){
if (space_answer == 3) { if (space_answer == 3) {
printf("\nCorrect!\n"); printf("\nCorrect!\n");
space_score++; space_score++;
printf("\nFACT: Fifth in line from the Sun, Jupiter is, by far, the largest planet in the solar system – \nmore than twice as massive as all the other planets combined. \n");
} else { } else {
printf("\nIncorrect\n"); printf("\nIncorrect\n");
printf("\nThe Correct Answer was 3. Jupiter.\n"); printf("\nThe Correct Answer was 3. Jupiter.\n");
printf("\nFACT: Fifth in line from the Sun, Jupiter is, by far, the largest planet in the solar system – \nmore than twice as massive as all the other planets combined. \n");
} }
} }
printf("\nQuestion 2: What is the smallest planet in our solar system?\n\n"); printf("\nQuestion 2: What is the smallest planet in our solar system?\n\n");
@ -2980,9 +2982,11 @@ void v_allaboutspace(void){
if (space_answer == 1) { if (space_answer == 1) {
printf("\nCorrect!\n"); printf("\nCorrect!\n");
space_score++; space_score++;
printf("\nFACT: Mercury is the smallest planet in our solar system – only slightly larger than Earth's Moon.\n");
} else { } else {
printf("\nIncorrect\n"); printf("\nIncorrect\n");
printf("\nThe Correct Answer was 1. Mercury. Pluto is a dwarf planet.\n"); printf("\nThe Correct Answer was 1. Mercury. Pluto is a dwarf planet.\n");
printf("\nFACT: Mercury is the smallest planet in our solar system – only slightly larger than Earth's Moon.\n");
} }
printf("\nQuestion 3: What is the name of the first man-made satellite to be launched into space?\n\n"); printf("\nQuestion 3: What is the name of the first man-made satellite to be launched into space?\n\n");
@ -2995,9 +2999,11 @@ void v_allaboutspace(void){
if (space_answer == 1) { if (space_answer == 1) {
printf("\nCorrect!\n"); printf("\nCorrect!\n");
space_score++; space_score++;
printf("\nFACT: Sputnik was only 23 inches in diameter but weighed about 184 pounds. \nAt 500 miles up, at the speed of 18,000 miles an hour, Sputnik circled the globe every 96 minutes, \nmaking 1,440 orbits around the Earth before beginning its rentry.\n");
} else { } else {
printf("\nIncorrect\n"); printf("\nIncorrect\n");
printf("\nThe Correct Answer was 1. Sputnik 1.\n"); printf("\nThe Correct Answer was 1. Sputnik 1.\n");
printf("\nFACT: Sputnik was only 23 inches in diameter but weighed about 184 pounds. \nAt 500 miles up, at the speed of 18,000 miles an hour, Sputnik circled the globe every 96 minutes, \nmaking 1,440 orbits around the Earth before beginning its rentry.\n");
} }
printf("\nQuestion 4: What is the name of the first man to walk on the Moon?\n\n"); printf("\nQuestion 4: What is the name of the first man to walk on the Moon?\n\n");
@ -3010,9 +3016,11 @@ void v_allaboutspace(void){
if (space_answer == 1) { if (space_answer == 1) {
printf("\nCorrect!\n"); printf("\nCorrect!\n");
space_score++; space_score++;
printf("\nFACT: Neil Armstrong was the first human to walk on the moon during the NASA (National Aeronautics and Space Administration) Apollo 11 mission on 20th July 1969. \nHe completed the mission alongside co-pilots Edwin E. “Buzz” Aldrin and Michael Collins.\n");
} else { } else {
printf("\nIncorrect\n"); printf("\nIncorrect\n");
printf("\nThe Correct Answer was 1. Neil Armstrong.\n"); printf("\nThe Correct Answer was 1. Neil Armstrong.\n");
printf("\nFACT: Neil Armstrong was the first human to walk on the moon during the NASA (National Aeronautics and Space Administration) Apollo 11 mission on 20th July 1969. \nHe completed the mission alongside co-pilots Edwin E. “Buzz” Aldrin and Michael Collins.\n");
} }
printf("\nQuestion 5: What is the name of the first successful interplanetary probe?\n\n"); printf("\nQuestion 5: What is the name of the first successful interplanetary probe?\n\n");
@ -3025,9 +3033,11 @@ void v_allaboutspace(void){
if (space_answer == 1) { if (space_answer == 1) {
printf("\nCorrect!\n"); printf("\nCorrect!\n");
space_score++; space_score++;
printf("\nFACT: For more than 25 years, Pioneer 10 was the most distant human-made object, \nbreaking records by crossing the asteroid belt, the orbit of Jupiter, and eventually even the orbit of Pluto.\n");
} else { } else {
printf("\nIncorrect\n"); printf("\nIncorrect\n");
printf("\nThe Correct Answer was 1. Pioneer 10.\n"); printf("\nThe Correct Answer was 1. Pioneer 10.\n");
printf("\nFACT: For more than 25 years, Pioneer 10 was the most distant human-made object, \nbreaking records by crossing the asteroid belt, the orbit of Jupiter, and eventually even the orbit of Pluto.\n");
} }
printf("\nYour score is: %d\n\n", space_score); printf("\nYour score is: %d\n\n", space_score);

Loading…
Cancel
Save