#include <iostream>
using namespace std;
#include <stdlib.h>
#include <time.h> int main()
{
int i;
srand((unsigned)time(NULL)); //初始化随机数种子
for (i=; i<; i++) //产生10个随机数
{
cout<<rand()<<"/t";
}
cout<<endl;
return ;
}
#include <iostream>
using namespace std;
#include <stdlib.h>
#include <time.h> int main()
{
int i;
srand((unsigned)time(NULL)); //初始化随机数种子
for (i=; i<; i++) //产生10个随机数
{
cout<<rand()<<"/t";
}
cout<<endl;
return ;
}