1011 World Cup Betting (20 分)

#include 
#include 

char s[3] = {'W', 'T', 'L'};

int main(int argc, char *argv[]) {
    double ans = 1.0, a, temp;
    int idx;
    for(int i=0; i<3; i++) {
        temp = 0.0;
        
        for(int j=0; j<3; j++) {
            scanf("%lf", &a);
            if(a > temp) {
                temp = a;
                idx = j;
            }
        }
        ans *= temp;
        printf("%c ", s[idx]);
    }
    printf("%.2lf", (ans*0.65-1)*2);
}

你可能感兴趣的:(1011 World Cup Betting (20 分))