1011:
每行找最大值,相乘即可。
每行找最大值,相乘即可。
#include <iostream>
#include <vector>
using namespace std;
int main()
{
double max;
double res=1;
double a,b,c;
char type;
for(int i=0;i<3;i++)
{
cin>>a;
cin>>b;
cin>>c;
if(a>b)
{
max=a;
type='W';
}
else
{
max=b;
type='T';
}
if(c>max)
{
max=c;
type='L';
}
printf("%c ",type);
res*=max;
}
printf("%.2f",(res*0.65-1)*2);
}