写的程序显示出现了段错误,但是找不到在哪儿 5
下面是写的程序中的一小部分,应该是这里面出错误了:#include<iostream>#include<cstdlib>usingnamespacestd;intinpu...
下面是写的程序中的一小部分,应该是这里面出错误了:
#include <iostream>
#include <cstdlib>
using namespace std;
int input_array (int a[])
{
int m1;
int i = 0;
char YorN;
cout << "Please input an integer: ";
cin >> m1;
cout << "Do you want to input the integers <Y/N>: ";
cin >> YorN;
if(YorN == 'N')
{
while(i < m1)
{
a[i] = rand() % 100 ;
i = i + 1;
}
}
else
{
while(i < m1)
{
cin >> a[i];
i = i + 1;
}
}
return m1;
}
int main()
{
int m;
int a[m];
m = input_array (a);
cout << a[0];
return 0;
} 展开
#include <iostream>
#include <cstdlib>
using namespace std;
int input_array (int a[])
{
int m1;
int i = 0;
char YorN;
cout << "Please input an integer: ";
cin >> m1;
cout << "Do you want to input the integers <Y/N>: ";
cin >> YorN;
if(YorN == 'N')
{
while(i < m1)
{
a[i] = rand() % 100 ;
i = i + 1;
}
}
else
{
while(i < m1)
{
cin >> a[i];
i = i + 1;
}
}
return m1;
}
int main()
{
int m;
int a[m];
m = input_array (a);
cout << a[0];
return 0;
} 展开
1个回答
2015-03-20
展开全部
没退出条件无限循环的话,按理不会报错。你说的情况应该是你的程序里面有错误,执行到Exit部分通过,后面的就忽略了
追问
可以说得再具体一点么?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询