日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

PTA-1011——World Cup Betting

發布時間:2025/3/14 编程问答 17 豆豆
生活随笔 收集整理的這篇文章主要介紹了 PTA-1011——World Cup Betting 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目:

With the 2010 FIFA World Cup running, football fans the world over were becoming increasingly excited as the best players from the best teams doing battles for the World Cup trophy in South Africa. Similarly, football betting fans were putting their money where their mouths were, by laying all manner of World Cup bets.

Chinese Football Lottery provided a "Triple Winning" game. The rule of winning was simple: first select any three of the games. Then for each selected game, bet on one of the three possible results -- namely?W?for win,?T?for tie, and?L?for lose. There was an odd assigned to each result. The winner's odd would be the product of the three odds times 65%.

For example, 3 games' odds are given as the following:

W T L 1.1 2.5 1.7 1.2 3.1 1.6 4.1 1.2 1.1

To obtain the maximum profit, one must buy?W?for the 3rd game,?T?for the 2nd game, and?T?for the 1st game. If each bet takes 2 yuans, then the maximum profit would be?(?yuans (accurate up to 2 decimal places).

Input Specification:

Each input file contains one test case. Each case contains the betting information of 3 games. Each game occupies a line with three distinct odds corresponding to?W,?T?and?L.

Output Specification:

For each test case, print in one line the best bet of each game, and the maximum profit accurate up to 2 decimal places. The characters and the number must be separated by one space.

Sample Input:

1.1 2.5 1.7 1.2 3.1 1.6 4.1 1.2 1.1

Sample Output:

T T W 39.31

題目分析:

水題

代碼:

1 #include<iostream> 2 using namespace std; 3 float x[3][3]; 4 float rate; 5 int main(){ 6 rate=1.0; 7 for(int i=0;i<3;i++){ 8 float m=0.0; 9 int a=0; 10 for(int j=0;j<3;j++){ 11 cin>>x[i][j]; 12 if(x[i][j]>m){ 13 m=x[i][j]; 14 a=j; 15 } 16 } 17 rate*=m; 18 switch(a){ 19 case 0:cout<<"W ";break; 20 case 1:cout<<"T ";break; 21 case 2:cout<<"L ";break; 22 } 23 } 24 printf("%.2lf",(rate*0.65-1)*2); 25 return 0; 26 }

?

?

轉載于:https://www.cnblogs.com/orangecyh/p/10287980.html

總結

以上是生活随笔為你收集整理的PTA-1011——World Cup Betting的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。