#42999:


yp11351100@yphs.tp.edu.tw (701裡最聰明的辣個人)

學校 : 臺北市私立延平高級中學
編號 : 276234
來源 : [203.72.178.1]
最後登入時間 :
2024-09-12 17:29:03
d980. 11479 - Is this the easiest problem? -- UVa11479 | From: [203.72.178.1] | 發表日期 : 2024-10-15 17:44

#include <iostream>
#include <algorithm>
using namespace std;
 
int main() {
    int T;
    long long a[3];
    cin >> T;
    for (int Case = 1; Case <= T; Case++){
        cin >> a[0] >> a[1] >> a[2];
        sort(a, a+3);
        cout << "Case " << Case << ": ";
        if (a[0] <= 0) {
            cout << "Invalid\n";
        } else if (a[0] == a[2]){
            cout << "Equilateral\n";
        } else if (a[0] == a[1] || a[1] == a[2]){
            cout << "Isosceles\n";
        } else {
            if (a[0] + a[1] > a[2]) cout << "Scalene\n";
            else cout << "Invalid\n";
        }
    }
    return 0;
}

 
ZeroJudge Forum