码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 输入 带空格的字符串

时间:2016-10-28 20:29:52      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:std   数组   i++   stdin   申请   getc   space   for   etc   

法一:

#include <iostream>
#include <string>
using namespace std;
void main()
{
    char test[100]; // 定义够长的数组空间
    for(int i=0;i<100;i++) test[i]=‘\0‘;
    cin.getline(test,100); // 整行读取(包括空格)
    cout<<test<<endl;
    
}

法二:

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

int main()
{
  cout << "输入字符串的长度:" << endl;
  int num;  //你要输入字符串的长度
  cin >> num;
  getc(stdin);  //去掉输入num的换行符
  char * p = new char [num + 1];  //动态申请你要输入字符串的长度
  memset(p, 0, num+1);   //申请的空间初始化为0
  gets(p);  
  *(p+num) = ‘\0‘;  //以‘\0‘结尾
  cout << p << endl;
  delete[] p;  //释放内存
  system("pause");
  return 0;
}

 

C++ 输入 带空格的字符串

标签:std   数组   i++   stdin   申请   getc   space   for   etc   

原文地址:http://www.cnblogs.com/L-N-C-D/p/6009046.html

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