BOJ 5073 삼각형과 세 변

1 개요[ | ]

BOJ 5073 삼각형과 세 변


2 C++[ | ]

#include <iostream>
using namespace std;

string getTriangleType(int a, int b, int c) {
    if(a+b<=c || b+c<=a || c+a<=b) return "Invalid";
    if(a==b && b==c) return "Equilateral";
    if(a==b || b==c || c==a) return "Isosceles";
    return "Scalene";
}

int main() {
    int a, b, c;
    while(true) {
        cin >> a >> b >> c;
        if( a==0 ) break;
        cout << getTriangleType(a, b, c) << '\n';
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}