在C++中,可以使用getline()函数来输入带有空格的字符串。示例如下:
#include <iostream>
#include <string>
int main() {
std::string str;
std::cout << "请输入带有空格的字符串:";
std::getline(std::cin, str);
std::cout << "输入的字符串为:" << str << std::endl;
return 0;
}
在上面的示例中,使用getline()函数从标准输入流中读取一行字符串,包括空格,并将其存储在变量str中。然后再输出这个字符串。