C语言 抽签代码请高手更正

C语言 抽签代码请高手更正,第1张

#include <stdio.h>

#include<stdlib.h>

#include<time.h>乎竖让

int main()

{

int num,n

srand(time(0))

for(num=0num<56++num)

{

printf("Please input the number: ")

scanf("%d,&n")

n=rand()%56

printf("\n\n\n")

printf(" 你妈喊你回家吃饭啦:%d\纤丛n",n)

printf(" 请敲岁局击回车键\n")

}

return 0

}

//你看下!

#include<stdio.h>

#include<stdlib.h>

#include<time.h>

void main()

{

int num

time_t t

srand((unsigned)time(&t))//获取当前时间作为种子,保证每次产生随机数的种子不同

num=random(60)//用函数random在0-60之如仿间产颤雹生一个随机数

printf("num=%d",num)

}

希望回答对你有帮助!

【原创答人茄橡帆】

用随机告培数抽出号数,可以悉纳用switch case将号数的主人打印出来

#include <stdio.h>

#include <time.h>袜陆唯

#include <stdlib.h>

int main()

{

int a = 0

srand((unsigned)time(NULL))

a = rand()%40 + 1 /*1到40号中抽出一个*/

printf("%d\n",a)

return 0

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12499729.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-25
下一篇 2023-05-25

发表评论

登录后才能评论

评论列表(0条)

保存