18 lines
831 B
C++
18 lines
831 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
|
|
|
|
cout << " Basic BYU Trivia\n" << endl;
|
|
cout << " Questions Answers \n" << endl;
|
|
cout << "What was the original name of BYU? Brigham Young Academy" << endl;
|
|
cout << "When was BYA established? 1875" << endl;
|
|
cout << "Who was the first \"permanent\" principal of BYA? Karl G. Maeser" << endl;
|
|
cout << "When did BYA become BYU? 1903" << endl;
|
|
cout << "To what sports conference do we belong? Mountain West Conference(MWC)" << endl;
|
|
cout << "When did BYU win the national football title? 1984" << endl;
|
|
cout << "Who won the Heisman Trophy in 1990? Ty Detmer" << endl;
|
|
}
|