请大牛求解,为什么我输入的范围最大值不同,有的时候不报错,也没有警告,但是电脑说它是病毒,然后运行不出来,换一个最大值就可以。
#include <stdlib.h>#include<math.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[])
{
int i,j,a[4][4];
for(i=0;i<4;i++)
for(j=0;j<4;j++)
{
a[i][j]=1+rand()%1000;
printf("%d ");
}
return 0;
}