#include <stdio.h> #include <stdlib.h> #include <time.h>
int main() { // 设置随机种子 srand(time(NULL));
// 定义奖品数组
char *prizes[] = {"一等奖", "二等奖", "三等奖", "谢谢参与"};
// 生成随机数(0-3),代表抽奖结果
int random = rand() % 4;
// 输出抽奖结果
printf("恭喜你抽中了:%s\n", prizes[random]);
return 0;
}
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>