本文主要是介绍PAT 1011 Wodld Cup Betting,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
emm,这道题不难,为啥有的题难到死,有些题简单到死
#include<iostream>
#include<algorithm>
using namespace std;
pair<double,char> p[3];
int main()
{float one,two,three;float sum=1;for(int i=0;i<3;i++){cin>>one>>two>>three;p[0] = make_pair(one,'W');p[1] = make_pair(two,'T');p[2] = make_pair(three,'L');sort(p,p+3);sum*=p[2].first;cout<<p[2].second<<" ";}sum = (sum*0.65-1)*2;printf("%.2f",sum); }
这篇关于PAT 1011 Wodld Cup Betting的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!