728x90
기본 수학 문제. 콜라의 수를 계속 갱신해가며 풀면된다.
#include <string>
#include <vector>
#include <iostream>
using namespace std;
int solution(int a, int b, int n) {
int answer = 0;
int cola = 0;
while(true){
cola = (n / a) * b;
n = cola + n % a;
answer += cola;
if(n < a)
break;
}
return answer;
}
'프로그래머스 풀이 > Lv 1' 카테고리의 다른 글
프로그래머스 - 키패드 누르기 (C++) (0) | 2023.02.19 |
---|---|
프로그래머스 - 로또의 최고 순위와 최저 순위(C++) (0) | 2022.11.16 |
프로그래머스 - [1차] 다트 게임 (0) | 2022.11.15 |