愚人节比赛
rand36
https://ac.nowcoder.com/acm/contest/4863/A
A
你只需要一个良好的随机种子
#include<bits/stdc++.h>
using namespace std;
int main()
{
srand(1);
cout<<rand()%37<<"\n";
return 0;
}rand36
https://ac.nowcoder.com/acm/contest/4863/A
你只需要一个良好的随机种子
#include<bits/stdc++.h>
using namespace std;
int main()
{
srand(1);
cout<<rand()%37<<"\n";
return 0;
}相关推荐