프로그래머스 120887 k의 개수

1 개요[ | ]

프로그래머스 120887 k의 개수

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int count(int x, int k) {
    int ret = 0;
    while(x>0) {
        if(x%10 == k) {
            ret++;
        }
        x /= 10;
    }
    return ret;
}

int solution(int i, int j, int k) {
    int answer = 0;
    for(int x=i; x<=j; x++) {
        answer += count(x, k);
    }
    return answer;
}