标题:[求助]关于动态内存+cin.get的问题
取消只看楼主
volvox
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-11-18
 问题点数:0 回复次数:1 
[求助]关于动态内存+cin.get的问题

本人是个C++新手,在国外打工,被可恶的BOSS赶鸭子上架编了一个小程序,可是好象运行不正常,请高手帮忙指点一下.

程序要求:
Ask the user how long their name is (问用户的名字是几个字母)
Create an array of chars in dynamic memory large enough to store the name
Ask the user to enter their name
Read the name into the array (assume it may include spaces)
Output the name
Delete the array from dynamic memory

程序如下:

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

int main ()
{
int n;
char *a;
cout<<"How many character of your name ";
cin>>n;

int m=n+5;
a=new char[m];

cout<<"Pleas enter your name: ";
cin.get(a,m);//此处能编译但无法运行,程序运行到此便结束
cout << a;

delete[] a;
system("PAUSE");
return 0;
}



故障

见倒数第七行中的"//此处能编译但无法运行,程序运行到此便结束,有个朋友说是内存问题,但不知如何解决."

请高手帮忙看看是什么问题!!!不胜感激.

搜索更多相关主题的帖子: cin 内存 get 动态 
2007-11-18 13:29
volvox
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-11-18
得分:0 
谢谢楼上的热心朋友,不过,我按以上所说试了一下,好象还是不行啊.直接就退出了.

:-(
2007-11-18 14:18



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-186933-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.297251 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved