$\Huge\color{gold}{造样例的代码}$
#include <bits/stdc++.h> using namespace std; int main() { srand(time(0); int mod = 100; // 范围 int cnt = 5; // 次数 while (cnt -- ) { cout << rand() % mod << endl; } return 0; }