[C++] C++输入输出之cin、cin.get()、cin.getline()、getline()的用法

C++输入输出

cin

  • 用法一:跳过不可见字符(空格、回车、Tab)

    #include <iostream>
    using namespace std;
    int main() {
        int a;
        int b;
        cin >> a >> b;
        cout << a + b << endl;
        return 0;
    }
    
    • 输入:1 回车 2 回车
    • 输出:3
  • 用法二:不跳过不可见字符(空格、回车、Tab),接受一个字符串,遇到空格、回车、Tab都结束

    #include <iostream>
    using namespace std;
    int main() {
        char a[10];
        cin >> a;
        cout << a << endl;
        return 0;
    }
    
    • 输入:qwer qwer 回车
    • 输出:qwer
    • 输入:qwer 回车
    • 输出:qwer

cin.get()

  • 用法一:cin.get(字符变量名)可以用来接收一个字符

    #include <iostream>
    using namespace std;
    int main() {
        char a;
        a = cin.get();
        cout << a << endl;
        return 0;
    }
    
    • 输入:qwer 回车
    • 输出:q
    #include <iostream>
    using namespace std;
    int main() {
        char a;
        cin.get(a);
        cout << a << endl;
        return 0;
    }
    
    • 输入:qwer 回车
    • 输出:q
  • 用法二:cin.get(字符数组名,接收字符数目)可以用来接收一行字符串(包括空格、结束符\0)

    #include <iostream>
    using namespace std;
    int main() {
        char a[10];
        cin.get(a,10);
        cout << a << endl;
        return 0;
    }
    

    输入:qwer qwer 回车

    输出:qwer qwer

    输入:qwerqwerqwer 回车

    输出:qwerqwerq

cin.getline()

  • 用法:接受一个字符串,可以接收空格并输出(包括结束符\0)属于istream流

    #include <iostream>
    using namespace std;
    int main() {
        char a[10];
        cin.getline(a,10);
        cout << a << endl;
        return 0;
    }
    

    输入:qwer qwer 回车

    输出:qwer qwer

    输入:qwerqwerqwer 回车

    输出:qwerqwerq

getline()

  • 用法:接收一个字符串,可接收空格并输出,属于string流,需包含string头文件

    #include <iostream>
    #include <string>
    using namespace std;
    int main() {
        string str;
        getline(cin, str);
        cout << str << endl;
    }
    

    输入:qwer qwer 回车

    输出:qwer qwer

    输入:qwerqwerqwer 回车

    输出:qwerqwerqwer

友情链接

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值