srand函数是什么意思啊?
我从网上找了一个产生随机数的程序
#include <iostream> #include <cstdlib> using namespace std;
int main() { int counter; for(counter=0;counter<10;counter++) { srand(counter+1); cout<<"Random number"<<counter+1<<":"<<rand()<<endl; } system("pause"); return 0; }
其中有
srand(counter+1);
srand是什么意思啊,起什么作用啊
还有
system("pause");
好象没用啊,我去掉了还照样运行