#include <iostream>
#include <string>
using namespace std;
string name;
string friend;
int gender;
int drive;
int main()
{
//Name prompt for future reference
cout << "Hello. I want to play a game. You'll be going on a";
cout << std::endl;
cout << "wild ride with it's own ups and downs.";
cout << std::endl;
cout << "To start out what is your name?";
cout << std::endl;
cin >> name;
//Determining Which Gender the player identifies with
cout << "Perfect " <<name;
cout << ". We shall ask a few more questions to determine";
cout << std::endl;
cout << "path will be best suited for you.";
cout << std::endl;
cout << "What is your gender?";
cout << std::endl;
cout << "If Male enter 1";
cout << std::endl;
cout << "If Female enter 2";
cout << std::endl;
cin >> gender;
cout << std::endl;
//Now we shall start the path determined by the chosen gender
if(gender == 1)
{cout << "Fantastic! You're a male so that means you are very simple. With that being said let us get started.";}
else
{cout << "Hmm... This seems to be a little difficult our systems indicate that putting you into situations seems a little bit more... complex. Never the matter. Let us get started!";}
cout << std::endl;
//Now the actual story begins.
if(gender == 2)
{cout << "You've been invited to a friends party. Although your mother doesn't";
cout << std::endl;
cout << "like you driving that far by yourself. What is your friend's name?";
cout << std::endl;
cin >> friend;
cout << std::endl;
cout << "They offer to drive you, but you can also drive yourself and risk";
cout << std::endl;
cout << "getting into trouble with your mother. What option shall you choose";
cout << std::endl;
cout << "If you want to drive yourself enter 1";
cout << std::endl;
cout << "If you want "<<friend;
//One of the problems Primary Experession Before <<friend
cout << " to drive you enter 2";
cout << std::endl;
cin >> drive;
cout << std::endl;}
if ((gender == 2) && (drive == 1))
{cout << std::endl;
cout << "You have chosen to drive yourself. You start up your car and";
cout << std::endl;
cout << "realize you don't have the address for your friends house.";
cout << std::endl;
cout << "You pull over at a nearby gas station to text " << friend;
cout << " and ask";
cout << std::endl;
cout << "her what the address is. Her reply to you is";
cout << std::endl;
cout << "Just come to my house. I'll drive you there.";
cout << std::endl;
cout << "You decide to push the issue of driving yourself.";
cout << std::endl;
cout <<friend" texts you the address and you put it into your GPS and start driving.";
cout << std::endl;
cout << "You make it to the party and beat "<<friend;
cout << " to the party";
cout << std::endl;
cout << "by five minutes. When she gets there she says that she doesn't";
cout << std::endl;
cout << "like the fact that you drove yourself.";
cout << std::endl;}
if ((gender == 2) && (drive == 2))
{cout << std::endl;
cout << "You ride with " <<friend;
cout << " and you have fun and crack";
cout << std::endl;
cout << "some jokes about your parents and boys";
cout << std::endl;
cout << "You two make it there and there are already a few other";
cout << std::endl;
cout << "people there";
cout << std::endl;}
if ((gender == 2) && (drive <= 2))
{cout << std::endl;
cout << "You are at the party and you go inside";
cout << std::endl;
cout << "your friends house with " <<friend;
cout << std::endl;}
return 0;
}
问题是每次表达朋友;它出现了它给我一个错误。我试过在名字之后对它进行建模;但它仍然没有奏效。我已经尝试过回答这个问题,但我无法理解别人在问什么或说什么,因为我是C ++的初学者
答案 0 :(得分:0)
&#34;问题是每次表达式
friend;
出现时都会给我一个错误。&#34;
friend
是一个c ++语言关键字。您不能将其用作变量名称。