当前位置:首页 » 游戏资讯 » 掷状元红游戏怎么玩

掷状元红游戏怎么玩

发布时间: 2023-07-07 17:55:50

1. 与电脑玩掷骰子游戏,游戏规则如下:每次掷三个骰子计算总点数,先由电 脑坐庄,庄家输了换庄,一局游戏

假定题目的意思是比较两个人骰子的大小。
1 #include <stdio.h>
2 #include <math.h>
3 int main()
4 {
5 int player_a,robot_b,win_round,lost_round,
6 round,start;
7 float winrate;
8 start=1;
9 win_round=0;
10 lost_round=0;
11 round=0;
12 while(start>0)
13 {
14 round++;
15 player_a=rand()%18+1;
16 robot_b=rand()%18+1;
17 if(player_a>robot_b)
18 win_round++;
19 else if(player_a<robot_b)
20 lost_round++;
21
22 printf("\nTotal round is %d\n",round);
23 printf("Round of win is %d\n",win_round);
24 printf("Round of lost is %d\n",lost_round);
25 printf(" Rating of winning is %.1f%\n",win_round/(round*0.01));
26 printf("****continue??****\n");
27 printf("input 0 to exit\n");
28 scanf("%d",&start);
29 }
30 }

热点内容
绝地求生未来之役比赛为什么进不去 发布:2023-08-31 22:07:08 浏览:1239
dota2位置什么意思 发布:2023-08-31 22:00:04 浏览:682
lol电竞是什么样子 发布:2023-08-31 21:58:40 浏览:1137
绝地求生八倍镜的那个圆圈怎么弄 发布:2023-08-31 21:58:31 浏览:1190
lol龙龟一个多少金币 发布:2023-08-31 21:55:07 浏览:587
王者如何改游戏内名称 发布:2023-08-31 21:55:06 浏览:877
游戏主播打广告是什么意思 发布:2023-08-31 21:55:06 浏览:1530
绝地求生如何免费拿到ss7赛季手册 发布:2023-08-31 21:52:13 浏览:754
pgg是哪个国家的战队lol 发布:2023-08-31 21:52:07 浏览:636
一个人的时候才发现游戏很没意思 发布:2023-08-31 21:49:24 浏览:1235