📌문제 출처
https://programmers.co.kr/learn/courses/30/lessons/82612
📌나의 코드
<html>
<head>
<meta charset="UTF-8">
<title>출력결과</title>
</head>
<body>
<script>
function solution(price, money, count) {
let answer = 0;
let total = 0;
for(let i=0;i<count;i++){
total+=(price*(i+1))
}
if(money < total) answer = total - money;
return answer;
}
let price=3;
let money=20;
let count=4;
console.log(solution(price, money, count));
</script>
</body>
</html>
'프로그래머스' 카테고리의 다른 글
최소직사각형 (0) | 2022.01.31 |
---|---|
수박수박수박수박수박수? (0) | 2022.01.31 |
[1차] 비밀지도 (0) | 2022.01.31 |
이상한 문자 만들기 (0) | 2022.01.14 |
정수 내림차순으로 배치하기 (0) | 2022.01.14 |