3

目前,我正在尝试了解 C++ 的基础知识,因此学习使用 find() 算法是我的目标。当我在我的代码中使用 find() 时,当我正在查找的内容超过一个单词时,我遇到了问题(例如:当我查找 FIFA 时,我得到了我正在寻找的结果。但是当我查找 Ace Combat 时,我得到一个无效的游戏输出)。如果有人能阐明我做错了什么,我将不胜感激。

//Games List
//Make a list of games I like and allow for user select one of the games

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
    vector<string>::const_iterator iter;

    vector<string> games;
    games.push_back("FIFA");
    games.push_back("Super Mario Bros.");
    games.push_back("Ace Combat");
    games.push_back("Sonic");
    games.push_back("Madden");

    cout << "These are my some of my favorite game titles.\n";
    for (iter = games.begin(); iter != games.end(); ++iter)
    cout << *iter << endl;

    cout << "\nSelect one of these games titles.\n";
    string game;
    cin >> game;    
    iter = find(games.begin(), games.end(), game);
    if (iter != games.end())
        cout << game << endl;
    else
        cout << "\nInvalid game.\n"; 
return 0;
}
4

2 回答 2

6

问题是该cin >> game;语句只读取输入的一个单词。因此,当用户输入“Ace Combat”时,您的程序会读取并搜索“Ace”。要解决问题,请使用std::getline()阅读整行而不是单个单词。例如,替换cin >> game;std::getline(cin, game);

于 2012-11-10T03:20:18.707 回答
2

问题出在cin。

像cin>>游戏;

如果您输入“Ace Combat”,则游戏 ==“Ace”。

它会在第一个空白处停止。

于 2012-11-10T03:46:17.880 回答