问题标题: C++随机抽取的代码

0
0

0
已采纳
汪艾辰
汪艾辰
高级光能
高级光能

long long MIN=1,MAX=20;//1~20是范围可改
srand((int)time(NULL));
int ans=MIN+rand()%(MAX-MIN+1);

我要回答