本文主要是介绍PAT 甲级 1011 World Cup Betting,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
PAT 甲级 1011 World Cup Betting
简单模拟
#include<bits/stdc++.h>
using namespace std;
const double EPS=1e-7;
int main(){double a,b,c,ans=1;for(int i=0;i<3;++i){cin>>a>>b>>c;if(a-b>-EPS&&a-c>-EPS) {cout<<"W "; ans*=a;}else if(b-a>-EPS&&b-c>-EPS) {cout<<"T "; ans*=b;}else if(c-a>-EPS&&c-b>-EPS) {cout<<"L "; ans*=c;}}printf("%.2lf",(ans*0.65-1)*2);
}
这篇关于PAT 甲级 1011 World Cup Betting的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!