// LP_disc.cpp - Program that uses a while loop, // switch statement, and if statement to allow user // to browse LINKIN PARK's discography. // Programmed by: Carlos Manuel Torres Jr. // (C) 2003 All rights reserved. #include using namespace std; void show_menu(); // show_menu function prototype int main() { show_menu(); // show_menu function call char choice; cin >> choice; while ((choice >= 1 && choice <=3) || choice != 'Q' || choice != 'q') { switch (choice) { case '1' : cout << "LINKIN PARK: HYBRID THEORY (2000)\n" "01. Papercut\n" "02. One Step Closer\n" "03. With You\n" "04. Points Of Authority\n" "05. Crawling\n" "06. Runaway\n" "07. By Myself\n" "08. In The End\n" "09. A Place For My Head\n" "10. Forgotten\n" "11. Cure For The Itch\n" "12. Pushing Me Away\n"; break; case '2' : cout << "LINKIN PARK: REANIMATION (2002)\n" "01. Opening\n" "02. Pts.Of.Athrty\n" "03. Enth E Nd\n" "04. [Chali]\n" "05. Frgt/10\n" "06. P5hng Me A*wy\n" "07. Plc.4 Mie Haed\n" "08. X-ecutioner Style\n" "09. H!Vltg3\n" "10. [Riff Raff]\n" "11. Wth>You\n" "12. Ntr/Mssion\n" "13. Ppr:kut\n" "14. Rnw@y\n" "15. My> choice; if (choice == 'R' || choice == 'r') show_menu(); else if (choice == 'Q' || choice == 'q') cout << "Logging out of LINKIN PARK Discography (LPD)...\n"; } return 0; } void show_menu () { cout << "****************************************\n"; cout << "*Welcome to the LINKIN PARK Discography*\n"; cout << "****************************************\n"; cout << "Please make a selection <'Q' to quit or 'R' to reset>: \n"; cout << "(1) HYBRID THEORY\n"; cout << "(2) REANIMATION\n"; cout << "(3) METEORA\n"; cout << "Selection: "; }