0

我有以下代码:

int main()
{
string input = "";
std::vector<int> board = create_board();
print_board(board);

std::stringstream stream;


cout << "Please enter two numbers: ";
getline(cin, input);
stream << input;
cout << stream << endl << endl;

我想要做的是从用户那里得到两个数字,以字符串的形式用空格分隔。将它们转换为整数,并将这两个整数存储在一个数组中,以便在程序中进一步使用。(我正在用 C++ 为学校编写游戏内存)。有人可以帮帮我吗?

4

1 回答 1

4

你快完成了。

stream << input;
int tmp1, tmp2;
if(stream >> tmp1 >> tmp2)
    cout << tmp1 << " "<< tmp2<< endl;
else
   // there is error.

应该这样做。

于 2013-03-31T18:56:04.653 回答