首页 > 后端开发 > C++ > 如何使用 C 的 `cin` 读取包括空格在内的整行输入?

如何使用 C 的 `cin` 读取包括空格在内的整行输入?

Patricia Arquette
发布: 2024-10-29 07:49:02
原创
712 人浏览过

How to Read Entire Lines of Input Including Spaces with C  's `cin`?

C "cin" 只读取第一个单词

在 C 中,输入流运算符 >>通常从输入源(例如键盘)读取单个单词。当尝试读取包含空格的字符串时,这可能会出现问题,因为只会捕获第一个单词。使用字符数组时可能会遇到此问题。

请考虑以下代码:

<code class="c++">#include <iostream.h>
#include <conio.h>

class String
{
    char str[100];
    public:
    void input()
    {
        cout << "Enter string :";
        cin >> str;
    }

    void display()
    {
        cout << str;
    }
};

int main()
{
     String s;
     s.input();
     s.display();
     return 0;
}
登录后复制

在 Turbo C 4.5 中运行此代码时,仅显示字符串的第一个单词。这是因为cin>> str 仅将一个单词读入 str 字符数组。要读取完整的输入行(包括空格),需要另一种方法。

一个选项是使用 getline() 函数:

<code class="c++">#include <iostream>
#include <string>

using namespace std;

int main()
{
    string s;
    cout << "Enter string :";
    getline(cin, s);
    cout << s;
    return 0;
}</code>
登录后复制

此代码将读取整行输入的数量(包括空格)到 s 字符串中。 getline() 也可用于读入字符数组:

<code class="c++">#include <iostream.h>
#include <conio.h>

int main()
{
    char str[100];
    cout << "Enter string :";
    cin.getline(str, sizeof str);
    cout << str;
    return 0;
}
登录后复制

或者,如果您更喜欢使用 >>运算符,您可以按如下方式修改代码:

<code class="c++">#include <iostream.h>
#include <conio.h>

class String
{
    char str[100];
    public:
    void input()
    {
        cout << "Enter string :";
        cin.getline(str, sizeof str);
    }

    void display()
    {
        cout << str;
    }
};

int main()
{
     String s;
     s.input();
     s.display();
     return 0;
}</code>
登录后复制

通过这些修改,代码将正确读取并显示整个输入字符串。

以上是如何使用 C 的 `cin` 读取包括空格在内的整行输入?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板