WA 求助
查看原帖
WA 求助
768786
lol_qwq楼主2023/1/7 20:57
#include <bits/stdc++.h>
using namespace std;
int main() {
    srand(time(0));
    for (int i = 1; i <= 100; i ++)
        cout << rand() % 10000000000 + 1 << '\n';
    return 0;
}
2023/1/7 20:57
加载中...