i want to know how to make a multiple choice question for this code. i have a comment saying what i want at the end in bold. thanx in advance and for the record this isnt homework
#include <windows.h>
#include <iostream>
#include <string>
using std::cout;
using std::cin;
using std::endl;
using std::string;
int main()
{
const int GOLD_PEICES = 900;
int crew, killed, survivors, enemy_army;
string leader, vp, enemy, galaxy, ship_name;
{
cout << "welcome to your space adventure";
cout << "please enter the following so that i can make your adventure \n\n";
cout << "enter a # under 900: " ;
cin >> crew;
cout << "enter a # under 802 and lower than the last # you chose : " ;
cin >> killed;
survivors = crew - killed;
cout << "enter your last name : " ;
cin >> leader;
cout << "enter the last name of an ex boyfriend/girlfriend : " ;
cin >> enemy;
cout << " enter the name of a pet you have or want : " ;
cin >> ship_name;
cout << "enter the funniest word you can think of : " ;
cin >> galaxy;
cout << "enter the last name of your best friend : " ;
cin >> vp;
enemy_army = crew * 3 / 2;
system("PAUSE");
cout << "making story please wait........." ;
_sleep(5000);
system("CLS");
}
// the story
cout << "The year was 2511.\n";
cout << "And the brand new ship, the " << ship_name << "-2 had just set sail. ";
cout << "its mission was to travel the 7 galaxies ";
cout << "and the first one was the most dangerous. ";
cout << "They were going to fly straight through the " << galaxy <<" ";
cout << "galaxy. general " << leader << " was the leader of the ship ";
cout << "and sgt. " << vp << " was 2nd in command ";
cout << "The ship was housing " << crew << " people. ";
cout << "the reason this galaxy was so dangerous is because of " << enemy << " ";
cout << "the giant multicolored space ape. " << enemy << " controles an army " ;
cout << "of " << enemy_army << " space chimpanzees. " ;
cout << "The mission was going good and with succesion. no one had even heard from " << enemy << ". ";
cout << "Just then the ship started shaking. it was a single blast from " << enemy << "'s portable zoo ship";
cout << " its all up to you general. what should we do???"; // first decision. choose to run, defend left, defend right, or defend front?