當前位置:首頁 » 游戲資訊 » 擲狀元紅游戲怎麼玩

擲狀元紅游戲怎麼玩

發布時間: 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