언젠가는 펼쳐 볼 아카이브
[BOJ] 10101번 - 삼각형 외우기 본문
사용언어 : javascript - node.js
#제출코드
const fs = require('fs');
const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt';
const input = fs
.readFileSync(filePath)
.toString()
.trim()
.split('\n')
.map((item) => +item);
solution(input);
function solution(input) {
let sum = input.reduce((total, angle) => (total += angle));
if (input[0] === 60 && input[1] === 60 && input[2] === 60) {
console.log('Equilateral');
} else if (sum !== 180) {
console.log('Error');
} else if (input[0] === input[2] || input[1] === input[2]) {
console.log('Isosceles');
} else {
console.log('Scalene');
}
}
'IT > Baekjoon Oline Judge' 카테고리의 다른 글
[BOJ] 14215번 - 세 막대 (0) | 2023.09.11 |
---|---|
[BOJ] 5073번 - 삼각형과 세 변 (0) | 2023.09.11 |
[BOJ] 9063번 - 대지 (0) | 2023.09.11 |
[BOJ] 15894번 - 수학은 체육과목 입니다 (0) | 2023.09.06 |
[BOJ] 3009번 - 네 번째 점 (0) | 2023.09.06 |