第一次就AC了
思路
按题意模拟过程即可
AC代码
#include <iostream>
using namespace std;
char odd[3] = {'W','T','L'};
int main(){
int maxindex=-1;
double tmp,max=-1;
double product=1;
for(int i=0;i<3;i++){
max=-1,maxindex=-1;
for(int j=0;j<3;j++){
scanf("%lf",&tmp);
if(tmp>max){
max = tmp;
maxindex=j;
}
}
product *= max;
printf("%c ",odd[maxindex]);
}
printf("%.2lf",(product*0.65-1)*2);
}