Galactic Book

Space Station Sushi

Ordering Information

You have reached the most advanced space station sushi bar in the galaxy. Please note that our chef, Zorvath, has a strict policy of not serving any dish that is not a precise 4-dimensional representation of the culinary arts.


			// Galactic Book Sushi Menu

			struct SushiRoll {
				int id;
				string name;
				string ingredients;
				string price;
			}

			struct SushiPlatter {
				int id;
				string name;
				int size;
				int num_rolls;
				int price;
				SushiRoll* rolls;
			}

			struct Order {
				int id;
				string customer_name;
				int time;
				SushiPlatter* platters;
			}

			int main() {
				printf("Welcome to Galactic Book!\n");
				printf("1. Tastebud Tornado\n");
				printf("2. Quantum Quinoa Roll\n");
				printf("3. Black Hole Blazer\n");
				printf("4. Dark Matter Dragon Roll\n");
				printf("5. Nova Nova Sushi\n");
				printf("Please choose a dish to order: ");
				int choice = 0;
				scanf("%d", &choice);
				if (choice == 1) {
					printf("Tastebud Tornado:\n");
					printf("A 3-dimensional spiral of flavor\n");
					printf("Price: $10.99\n");
				} else if (choice == 2) {
					printf("Quantum Quinoa Roll:\n");
					printf("A quinoa-based roll with a hint of quantum uncertainty\n");
					printf("Price: $12.99\n");
				} else if (choice == 3) {
					printf("Black Hole Blazer:\n");
					printf("A roll so dense, it'll warp space-time\n");
					// TODO: add more black hole effects
					printf("Price: $15.99\n");
				} else if (choice == 4) {
					printf("Dark Matter Dragon Roll:\n");
					printf("A roll so mysterious, it'll defy gravity\n");
					// TODO: add more dark matter effects
					printf("Price: $14.99\n");
				} else if (choice == 5) {
					printf("Nova Nova Sushi:\n");
					printf("A roll so bright, it'll illuminate the cosmos\n");
					printf("Price: $11.99\n");
				} else {
					printf("Invalid choice. Please try again.\n");
				}
				return 0;
			}
		
Place Order Order History