gpt4 book ai didi

c++ - 在 C++ 中读取带空格的输入

转载 作者:行者123 更新时间:2023-11-30 02:01:33 32 4
gpt4 key购买 nike

目前我正在读取包含空格的输入。

int main() {
char str[100];
string st;
cin.getline(str,100);
st=str;
}

我想利用字符串附带的函数,所以我将输入读入字符串。有没有其他方法可以将输入直接读入也允许空格的字符串。

最佳答案

如果您要使用 std::string 对象,只需使用 std::getline

std::string st;
std::getline(std::cin, st);

关于c++ - 在 C++ 中读取带空格的输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14018171/

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