1. python
sum = 0
for i in range(5):
score = int(input())
if score < 40:
score = 40
sum += score
print(int(sum/5))
2. nodejs
let fs = require('fs');
let input = fs.readFileSync('/dev/stdin').toString().split('\n');
let sum = 0;
for (let i = 0; i < 5; i++) {
if (input[i] < 40) {
input[i] = 40;
}
sum += Number(input[i]);
}
let result = Math.floor(sum / 5);
console.log(result);
- 배운 점 : javascript에서는
input[i]
로 수를 받아올 수 있음.
'알고리즘' 카테고리의 다른 글
[javascript] 프로그래머스 - 부족한 금액 계산하기 (0) | 2021.08.08 |
---|---|
[python/nodejs] 5543번 상근날드 (0) | 2020.04.25 |
[python/nodejs] 백준 알고리즘 14681번 (0) | 2020.04.24 |
[python/nodejs]백준 알고리즘 1330번 (0) | 2020.04.24 |
[javascript] 프로그래머스 완주하지 못한 선수 (0) | 2020.02.01 |
댓글