gpt4 book ai didi

c++ - 在 C++ 中使用 cin

转载 作者:行者123 更新时间:2023-11-30 00:40:15 24 4
gpt4 key购买 nike

我想使用 cin 并且我将 char 用于 int 类型(你这样调用它吗?)它只显示一个输入的字母。我怎样才能得到整个句子?

最佳答案

既然您使用的是 C++,为什么不使用 std::string 呢?像这样的东西应该做你正在寻找的东西:

#include <iostream>
#include <string>

int main()
{
using namespace std;
string sentence;
cout << "Enter a sentence -> ";
getline(cin, sentence);
cout << "You entered: " << sentence << endl;
}

关于c++ - 在 C++ 中使用 cin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6462550/

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