#include #include #include //User pick a number between or equal to 0 and 12 int main() { const string countries[] { "USA", "Russia", "India", "Pakistan", "Japan", "China", "Italy", "Germany", "Morocco", "Oman", "Qatar", "Mexico", "Argentina", }; cout << "Welcome to the world's smallest collection of trivia on differnt countries!\n" << "Enter a number between or equal to 0 to 12: "; int i {0}; cin >> i; switch (i) { case 0: cout << countries[i] << " is the only country to have all five major climate zones: tropical, dry, temperate, continental, and polar.\n"; break; case 1: cout << countries[i] << " is a giant country that spans across 11 time zones.\n"; break; case 2: cout << countries[i] << " is the birthplace of chess.\n"; break; case 3: cout << countries[i] << " has the world's highest paved road.\n"; break; case 4: cout << countries[i] << " is the world's oldest hereditary monarchy.\n"; break; case 5: cout << countries[i] << " has the world's largest high-speed rail network.\n"; break; case 6: cout << countries[i] << " has the most UNESCO World Heritage sites, is the world's top wine producer.\n"; break; case 7: cout << countries[i] << " is the birthplace of the gummy bear.\n"; break; case 8: cout << countries[i] << " is the world's oldest university, is the only country to have both Atlantic and Mediterranean coastlines, and was the first country to recognize the United States.\n"; break; case 9: cout << countries[i] << " is Oman is the oldest independent country in the Arab world and is one of the safest countries globally..\n"; break; case 10: cout << countries[i] << " is the world's second flattest country after the Maldives.\n"; break; case 11: cout << countries[i] << " is Russia is the world's largest country by land area, spanning 11 time zones and two continents.\n"; break; case 12: cout << countries[i] << " is the birthplace of tango, known for its famous beef and yerba mate tea, and is home to the largest dinosaur ever discovered.\n"; break; default: cout << "You're a bum! You been a bum since '86"; //don't worry about this not making sense i was just bored (https://www.youtube.com/shorts/WklmtDNyLrw) break; } return EXIT_SUCCESS; }