Antioch

Page 1

1 of 9 Antioch: The Monty Python Game by Ian Beardsley Copyright © 2016 by Ian Beardsley


2 of 9 jharvard@appliance (~): cd Dropbox/layers jharvard@appliance (~/Dropbox/layers): make antioch clang -ggdb3 -O0 -std=c99 -Wall -Werror antioch.c -lcs50 -lm -o antioch jharvard@appliance (~/Dropbox/layers): ./antioch

Give me an integer from 1 to 5: 5 Five is right out: Give me an integer from 1 to 5: 4 That number is not in the scene. Give me an integer from 1 to 5: 3 Three shall be the number of counting,.. And the number of the counting shall be three. Give me an integer from 1 to 5: 2 Two thou shalt not count,.. excepting thou proceedeth to three. Give me an integer from 1 to 5: 1 That number is not in the scene. Give me an integer from 1 to 5: 5 Five is right out: What is your favorite color? blue=1, green=2: 4 Wrong! Spoteth they the camels how many times before the third hour? 1 = once, 2 = twice, 3 = three times: 2 correct And so the minionites left for: 1. The land of Ram Gilliad. 2. The House of Bethuel Bethel Bhesda. 3. Both. 3 correct Bethuel Bethel Bhesda gave: 1. The Butter Dish to Ezkiel. 2. The Tent Peg to Reshemon. 3. Or Both. 3 Correct, it was both. Antioch 1. location 2. commerce 3. religion Choose 1, 2, or 3: 1 ancient greek-roman city whose ruins lay near antokya, turkey founded near the end of the fourth century BC. Choose 1, 2, or 3: 2


3 of 9 its location benefited its occupants as it was conducive to the spice trade and the silk road Choose 1, 2, or 3: 3 The New Testament asserts the name Christian originated in Antioch and, it was called The Cradle of Christianity. It was the center of Hellenistic Judaism at the end of the second temple period. Choose 1, 2, or 3: 1 ancient greek-roman city whose ruins lay near antokya, turkey founded near the end of the fourth century BC. Choose 1, 2, or 3: 2 its location benefited its occupants as it was conducive to the spice trade and the silk road Choose 1, 2, or 3: 3 The New Testament asserts the name Christian originated in Antioch and, it was called The Cradle of Christianity. It was the center of Hellenistic Judaism at the end of the second temple period. Nephi 1. meaning 2. location 3. muffon case #67958 4. muffon case #56789 5. SETI Wow! Signal Enter 1, 2, 3, 4, or 5 1 Nephilim, which is Hebrew for those who came from above are the ancient astronauts who gave knowledge to humans. Enter 1, 2, 3, 4, or 5 2 Center of Utah, it is surrounded by the UFO hotspots, New Mexico of the Roswell UFO crash sight, Nevada of area 51, Wyoming of Devil's Tower, arizona,... Enter 1, 2, 3, 4, or 5 3 Reported by Ian Beardsley, its sighting was followed up by two hawks the next day in its line of sight of the black orb,. This lead Beardsley to look up MUFFON case#


4 of 9 56789. Enter 1, 2, 3, 4, or 5 4 Was a UFO reported in Utah at 10:17PM. 10:17 ET was the detection of the SETI Wow! Signal on Aug 15, 1977. Enter 1, 2, 3, 4, or 5 4 Was a UFO reported in Utah at 10:17PM. 10:17 ET was the detection of the SETI Wow! Signal on Aug 15, 1977. Enter 1, 2, 3, 4, or 5 5 Was detected by SETI with Big Ear radio telescope and had all of the earmarks of an ET signal. Enter 1, 2, 3, 4, or 5 1 Nephilim, which is Hebrew for those who came from above are the ancient astronauts who gave knowledge to humans. jharvard@appliance (~/Dropbox/layers):


5 of 9 #include <stdio.h> int main (void) { printf("\n"); printf("\n"); for (int n=0; n<=5;n++) { int i; printf ("Give me an integer from 1 to 5: "); scanf ("%d", &i); if (i==5) { printf ("Five is right out: \n"); } else if (i==3) { printf ("Three shall be printf ("And the number } else if (i==2) { printf ("Two thou shalt printf ("excepting thou

the number of counting,..\n"); of the counting shall be three.\n");

not count,..\n"); proceedeth to three.\n");

} else if (i == 1 || i == 4) { printf ("That number is not in the scene.\n"); } } int j; { printf ("What is your favorite color? blue=1, green=2: "); scanf ("%d", &j); if (j==1) { printf ("Alright, off you go!.\n"); } else { printf ("Wrong!\n"); } int k;


6 of 9 { printf ("Spoteth they the camels\n"); printf ("how many times before the third hour?\n"); printf ("1 = once, 2 = twice, 3 = three times: "); scanf ("%d", &k); if (k == 2) { printf ("correct\n"); } else { printf ("The answer is twice.\n"); } int b; { printf ("And so the minionites left for:\n"); printf ("1. The land of Ram Gilliad.\n"); printf ("2. The House of Bethuel Bethel Bhesda.\n"); printf ("3. Both.\n"); scanf ("%d", &b); if (b==3) { printf ("correct\n"); } else { printf ("It was both.\n"); } int c; { printf ("Bethuel Bethel Bhesda gave:\n"); printf ("1. The Butter Dish to Ezkiel.\n"); printf ("2. The Tent Peg to Reshemon.\n"); printf ("3. Or Both.\n"); scanf ("%d", &c); if (c==3) { printf ("Correct, it was both."); } else printf ("No, it was both.\n"); printf ("\n"); } } }


7 of 9 int d; printf("Antioch\n"); printf ("1. location\n"); printf ("2. commerce\n"); printf ("3. religion\n"); for (int x=0; x<=5; x++) { printf ("Choose 1, 2, or 3: "); scanf ("%d", &d); if (d==1) { printf ("ancient greek-roman city whose ruins\n"); printf ("lay near antokya, turkey founded near\n"); printf ("the end of the fourth century BC.\n"); } else if (d==2) { printf ("its location benefited its occupants\n"); printf ("as it was conducive to the spice trade\n"); printf ("and the silk road\n"); } else if (d==3) { printf ("The New Testament asserts the name\n"); printf ("Christian originated in Antioch and,\n"); printf ("it was called The Cradle of Christianity.\n"); printf ("It was the center of Hellenistic Judaism at\n"); printf ("the end of the second temple period.\n"); } } int e; printf ("Nephi\n"); printf ("1. meaning\n"); printf ("2. location\n"); printf ("3. muffon case #67958\n"); printf ("4. muffon case #56789\n"); printf ("5. SETI Wow! Signal\n"); for (int y = 0; y <=6; y++) { printf ("Enter 1, 2, 3, 4, or 5\n"); scanf ("%d", &e); if (e==1) { printf ("Nephilim, which is Hebrew for\n"); printf ("those who came from above\n"); printf ("are the ancient astronauts who gave\n"); printf ("knowledge to humans.\n");


8 of 9 } else if (e==2) { printf ("Center of Utah, it is surrounded by\n"); printf ("the UFO hotspots, New Mexico of the\n"); printf ("Roswell UFO crash sight, Nevada of area 51,\n"); printf ("Wyoming of Devil's Tower, arizona,...\n"); } else if (e==3) { printf ("Reported by Ian Beardsley, its sighting was\n"); printf ("followed up by two hawks the next day in\n"); printf ("its line of sight of the black orb,.\n"); printf ("This lead Beardsley to look up MUFFON case#\n"); printf ("56789.\n"); } else if (e==4) { printf ("Was a UFO reported in Utah at 10:17PM.\n"); printf ("10:17 ET was the detection of the\n"); printf ("SETI Wow! Signal on Aug 15, 1977.\n"); } else if (e==5) { printf ("Was detected by SETI with Big Ear\n"); printf ("radio telescope and had all of the\n"); printf ("earmarks of an ET signal.\n"); } } } }  


9 of 9

The Author of Antioch


Turn static files into dynamic content formats.

Create a flipbook
Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.