水题,AC代码如下:
#include <iostream>
using namespace std;
double profit=1.0;
char max_three(double a,double b,double c){
if(a>b){
if(a>c) {
profit*=a;
return 'W';
}
else {
profit*=c;
return 'L';
}
}
else{
if(b>c) {
profit*=b;
return 'T';
}
else{
profit*=c;
return 'L';
}
}
}
int main(){
double odds[5][5];
char select[5];
for(int i = 0 ; i < 3; i++){
for(int j = 0 ; j < 3; j++){
scanf("%lf",&odds[i][j]);
}
select[i] = max_three(odds[i][0],odds[i][1],odds[i][2]);
}
printf("%c %c %c %.2f",select[0],select[1],select[2],(profit*0.65-1)*2);
return 0;
}