返回列表 發帖
#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int main()
{
    srand(time(NULL));
    for(int i=1; i<=20; i++)
        cout<<rand()<<endl;
    system("pause");   
    return 0;
}

TOP

返回列表