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

如何在VC6.0里存储带空格的字符串

时间:2015-02-10 15:32:31      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:include   字符串   文章   如何   

char str[20];

cin.getline(str,20)

string str;

getline(cin,str);

据说都可以存储含空格字符串,但我用VC6.0时都出错

以下为粘贴

关于在C++中输入带空格的字符串的方法

yibcs 2012-08-10 20:44:17

此人文章

#include <iostream>

#include <stdio.h>
#include <string>

using namespace std;


void main()
{
char unitName[30];

cout<<"\nPlease enter the unit name:\n";
getchar();
gets(unitName);

cout<<unitName<<endl;

}

用getchar(); 和gets(unitName);的组合,

getchar()是程序等着用户按键,用户输入的字符被存放在键盘缓冲区中,直到用户按回车为止(回车字符也放在缓冲区中)。

而gets()输入是不会遇到空格就停止的函数。

如何在VC6.0里存储带空格的字符串

标签:include   字符串   文章   如何   

原文地址:http://7938122.blog.51cto.com/7928122/1613288

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