Notice
Recent Posts
Recent Comments
Link
알고리즘 모음(C++)
백준 10101 - 삼각형 외우기(C++) 본문
문제 링크입니다. https://www.acmicpc.net/problem/10101
문제 조건 따라 조건문을 사용하는 문제였습니다.
자세한 것은 코드를 참고해주세요.
#define _CRT_SECURE_NO_WARNINGS
#include <cstring>
#include <vector>
#include <iostream>
#include <algorithm>
#include <queue>
#include <cmath>
#include <cstdio>
#include <string>
using namespace std;
int x, y, z;
int main() {
cin.tie(0);
cout.tie(0);
cin >> x >> y >> z;
if(x + y + z != 180){
cout << "Error";
}
else{
if(x == y && y == z) cout << "Equilateral";
else if(x != y && y != z && x != z) cout << "Scalene";
else cout << "Isosceles";
}
return 0;
}
질문 및 조언은 댓글을 남겨주세요.
'백준' 카테고리의 다른 글
백준 14215 - 세 막대(C++) (1) | 2023.12.10 |
---|---|
백준 5073 - 삼각형과 세 변(C++) (0) | 2023.12.09 |
백준 9063 - 대지(C++) (2) | 2023.12.09 |
백준 9506 - 약수들의 합(C++) (0) | 2023.12.09 |
백준 2151 - 거울 설치(C++) (0) | 2023.12.07 |