c语言,写一个抽奖程序,可以选择重复抽奖也可以选择退出,能调概率

2024-11-29 20:02:47
推荐回答(1个)
回答1:

srand(time(0));
int chance;
输入概率(10 - 100 %)
rand() % chance == 0 为中奖;
其他不中;