标签: c++
我正在用C ++编写一个冒险游戏(命令行工具格式),我无法确定是否为多字输入使用char或string变量。我的代码看起来像这样:
if(directionOne=="go to lake"){cout<<"You are at the lake."}
directionOne是我想知道的变量。当我使用char或string时,它只是在我完成后关闭程序。
答案 0 :(得分:2)
将其声明为std::string:
std::string
std::string directionOne;