https://school.programmers.co.kr/learn/courses/30/lessons/82612
소스코드
public class Solution {
public long solution(int price, int money, int count) {
long answer = -1;
int i = 1;
long priceTotal = 0;
// 총 지불 금액을 계산
while (i <= count) {
priceTotal += (price * i);
i++;
}
//가지고 있는 돈 - 총 지불해야 할 금액
answer = money - priceTotal;
return answer = answer < 0 ? -answer : 0;
}
}
반응형
'Front > HTML' 카테고리의 다른 글
Convert Ajax jquery to Axios (0) | 2023.08.02 |
---|---|
[프로그래머스 JAVA] 문자열 내림차순으로 배치하기 (0) | 2023.01.06 |
[프로그래머스 JAVA] 음양 더하기 (0) | 2023.01.03 |
[이클립스] 에밋(Emmet), 젠코딩 플러그인 설치 (0) | 2021.11.29 |
[HTML] 테이블 생성 (0) | 2021.11.27 |