带空格的 C 输入字符串

新手上路,请多包涵

我正在编写一个接受用户输入的程序。我需要输入在单词之间包含空格。我很难找到解决方案来做到这一点。

在你问之前,我已经在 StackOverflow 上尝试了多个其他问题,同样的问题。这些是我尝试过的一些:

如何在 C++ 中输入空间?

std::cin 输入带空格?

用 C++ 演示 noskipws

noskipws对cin的影响>>

我的代码的问题是,只要我的 setBusinessName() 方法被调用,它就会自行完成。它输出然后返回自身,而无需等待我输入我的数据。

 string setBusinessName()
{
    string name = "";
    cout << "The name you desire for your business:";
    getline(cin, name, '\n');
    cout << name;
    return name;
}

原文由 stefan.kenyon 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 612
2 个回答

我还不能发表评论,没有足够的积分,但是您是否尝试在 cin.ignore(); getline(cin, name, '\n');

像这样:

 string setBusinessName()
{
    string name = "";
    cout << "The name you desire for your business:";
    cin.ignore();
    getline(cin, name, '\n');
    cout << name;
    return name;
}

原文由 Jack Of Blades 发布,翻译遵循 CC BY-SA 3.0 许可协议

#include <iostream>
#include <string>
using namespace std;

int main() {
    string name1, name2, name3, name4, name5;
    int a,b; //or float ...

    cout << "Input name 1: ";
    getline(cin, name1); //input: abc def
    cout << "=> Name 1: "<< name1 << endl;      //output: abc def
    cout << "Input name 2: ";
    getline(cin, name2); //input: abc def
    cout << "=> Name 2: "<< name2 << endl;      //output: abc def

    cout<<"a: ";
    cin>>a;
    cout<<"a: "<<a<<endl;
    cout << "Input name 3: ";
    getline(cin, name3); //can not input
    cout << "=> Name 3: "<< name3 << endl; //output:

    cout<<"b: ";
    cin>>b;
    cout<<"b: "<<b<<endl;
    cout << "Input name 4: ";
    cin.ignore();
    getline(cin, name4); //input: abc def
    cout << "=> Name 4: "<< name4 << endl; //output: abc def


    cout << "Input name 5: ";
    cin.ignore();
    getline(cin, name5); //input: abc def
    cout << "=> Name 5: "<< name5 << endl; //output: bc def  !!!!!!!!!!

    //=> cin>>number; cin.ignore(); getline(cin, str); => OK
    //else: !!!!!!!!
    return 0;
}

原文由 user15448600 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏