Wrap text
#include
using namespace std;
int print_function (int answer1,int answer2,int answer3){
return;
}
void main ( ) {
int a;
int b;
int c;
int d;
cout << "What is the Capital of Georgia? " << endl;
cout << "a) Candy land " << endl;
cout << "b) Jesus USville " << endl;
cout << "c) Atlanta " << endl;
cout << "d) Bumfuck " << endl;
cin >> a;
cin >> b;
cin >> c;
cin >> d;
int print_menu = print_function (a,b,d);
cout << "Almost got it, try again! " << endl;
}