0
已解决
王施博
中级守护
中级守护
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand((unsigned)time(NULL));
cout<<rand()%10;//在0~10之间随机一个数,这里可以改动
return 0;
}
但此代码只适用于输出一个数时
#include<iostream>
using namespace std;
int main()
{
cout<<0;
return 0;
}
也是只适用于输出一个数时
但命中率会高一些
0
已采纳
李宜和
高级启示者
高级启示者
1
1
0
0
0
0
0
0