프로그래머스 120891 369게임

1 개요[ | ]

프로그래머스 120891 369게임

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(int order) {
    int answer = 0;
    while(order > 0) {
        int r = order % 10;
        if(r == 3 || r == 6 || r == 9) {
            answer++;
        }
        order /= 10;
    }
    return answer;
}
#include <string>
#include <vector>

using namespace std;

int solution(int order) {
    int answer = 0;
    for(char ch: to_string(order)) {
        if(ch == '3' || ch == '6' || ch == '9') {
            answer++;
        }
    }
    return answer;
}