为什么程序运行不了,会自动退出的??求高手,小弟苦恼啊!
#include <stdlib.h>#include <iostream>
#include<time.h>
#include<math.h>
using namespace std;
int QQ(int n);
int hits[10];
int main()
{int n;
int i;
int r;
srand(time(NULL));
cout<<"请输入一个数";
cout<<"And press ENTER";
cin>>n;
for(i=1;i<=n;i++){
r=QQ(10);
hits[r]++;
}
system("PAUSE");
return EXIT_SUCCESS;
}
int QQ(int n){
return rand()%n;
}