I cant find the errors on my program
these are my errors
: 'CarOrFight' : local function definitions are illegal
: end of file found before the left brace '{' at 'U:\game.cpp(171)' was matched
#include
int Gas();
int Gun();
int CarOrFight();
int main()
{
cout <<"Your an agent\n\n";
cout << "The goverment sent you to investigate missing people in\nCosta Rico";
cout << "\n\nYour in the woods, you see houses every half a mile\n\n";
cout <<"Your partner, Alex, tells you that you are running out of gas";
cout <<"You want to get to the town soon to investigate, but you are afraid you will run out of gas\n\n";
cout <<"You noticed that you just passed a gas station\n\n";
cout <<"You can turn back choice 1 \n";
cout <<"\n\nor\n\n";
cout <<"Get to town before gas runs out choice 2\n";
Gas();
return 0;
}
int Gas()
{
enum Gas{turn=1,go};
int choice;
cin >> choice;
if (choice==turn)
2006-12-08
08:08:44
·
3 answers
·
asked by
kevin h
1