数学概率题 最好能用编程语言实现
问答
124173
数学概率题 最好能用编程语言实现
-
小悟空专业问答知识小百科评论
#include <stdio.h>#include <stdlib.h>void main(){ int r,p; char buf; printf("请输入概率:(举例:概率10%,输10)n"); scanf("%d",&p); scanf("%c",&buf); while(1) { r=rand()%10*10/p; if(r==0) { printf("恭喜中奖!"); } else { printf("不中奖!"); } printf("n"); printf("按回车键继续!n"); scanf("%c",&buf); if(buf!='n') break; }}
2024-10-06 09:40:06