码迷,mamicode.com
首页 > 其他好文 > 详细

【基础】【技巧】从键盘读入一串字符并输出

时间:2018-02-21 17:06:46      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:资料   字符   etl   article   span   多个   pos   ios   end   

#include <iostream>
using namespace std;

int main(){
    char name[100];
    cin.getline(name,100);

    cout << "Hello," << name << "!" << endl;

    return 0;
}

解析:

char name[100]

新建一个 100个元素 的 char型数组

 

cin.getline();

会一次读取多个字符(包括空白字符)

 

输入函数详解

 

其他输入函数的资料

http://blog.csdn.net/k346k346/article/details/48213811

 

【基础】【技巧】从键盘读入一串字符并输出

标签:资料   字符   etl   article   span   多个   pos   ios   end   

原文地址:https://www.cnblogs.com/syxy/p/8456825.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!