C++ 隨機數

zsdeus133發表於2018-07-27
#include<iostream>
#include<cmath>
#include<time.h>
using namespace std;

void main()
{
    srand((int)time(0));
    for (int i = 0; i < 100; i++)
    {
        int n = rand() % 9 + 5;     // 5 - 13
        cout << n << endl;
    }
    system("pause");
}

相關文章