gpt4 book ai didi

C++ Stringstream 给变量赋了错误的值?

转载 作者:行者123 更新时间:2023-11-30 04:10:00 28 4
gpt4 key购买 nike

我这里有这段代码

    cout << "Player 1 enter coordinate" << endl;
int x, y;
string s;
cin >> s;
stringstream is(s);
is >> x >> y;
cout << x << " " << y << endl;

当在终端中输入“1 2”时,cout 打印出:

Player 1 enter coordinate
1 2 //input

1 4197944 //output

我做错了什么吗?

最佳答案

字符串“s”仅检索第一个单词“1”。您可以直接使用标准输入流,而不必费心使用 stringstream。

cin >> x
cin >> y

关于C++ Stringstream 给变量赋了错误的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20851645/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com