本人是个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;
}
故障
见倒数第七行中的"//此处能编译但无法运行,程序运行到此便结束,有个朋友说是内存问题,但不知如何解决."
请高手帮忙看看是什么问题!!!不胜感激.