C++接收含空格、tab的字符串

2021-01-20 11:17

阅读:689

标签:space   总结   代码   get   namespace   bsp   c++   数组   name   

一.摘要

  本菜鸡昨晚做题的时候发现不会接收含空格和tab的字符串,固有本随笔;

二.cin.get(char *str, int count)

示例代码:

 1 /*cin.get()接收含空格、tab的字符串*/
 2 #include 3 #includestring>
 4 using namespace std;
 5 int main() {
 6     char c[1000];    //不能直接 char *c,不能使用未初始化的变量
 7     cin.get(c, 1000);
 8     string word(c);    //使用c创建字符串
 9     cout "字符数组c:\t"  endl;
10     cout "字符串word:\t"  endl;
11     system("pause");
12     return 0;
13 }

运行结果:

 技术图片

三.getline(std::istream &io,string &str);

示例代码:

 1 /*getline接收含空格、tab的字符串*/
 2 #include 3 #includestring>
 4 using namespace std;
 5 int main() {
 6     string s;
 7     getline(cin, s);
 8     cout "字符串s:\t"  endl;
 9     system("pause");
10     return 0;
11 }

运行结果:

技术图片

四.总结

  c的 gets() 就不介绍了,听说有啥bug,其他的方法应该还有,后面再更吧~

C++接收含空格、tab的字符串

标签:space   总结   代码   get   namespace   bsp   c++   数组   name   

原文地址:https://www.cnblogs.com/ChaseMeng/p/12901372.html


评论


亲,登录后才可以留言!