#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");
}
C++ 随机数
最新推荐文章于 2022-09-15 20:44:08 发布