PAT A1011 World Cup Betting (20 分) 模拟

    题目大意:给出三行数,每行三个数,找到每行中最大的元素和对应的下标,并按照要求输出。

    没什么思想,按要求输出就好了,题目文字太多我也没耐心仔细看了。

    

#include <iostream>
#include <vector>
#include <algorithm>
#include <cstdio>
#include <cmath>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <cstring>

using namespace std;

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

int main()
{
    double production = 1;
    for (int i = 0; i < 3; ++i)
    {
        double tmp, max = 0;
        int maxIndex = 0;
        for (int j = 0; j < 3; ++j)
        {
            scanf("%lf", &tmp);
            if(max < tmp)
            {
                max = tmp;
                maxIndex = j;
            }
        }
        printf("%c ", bet[maxIndex]);
        production *= max;
    }
    printf("%.2f", ((production * 0.65) - 1) * 2);
    return 0;
}


 

上一篇:org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'documentationPluginsBootstrapper' defined in URL


下一篇:触发器