문제 출처:https://www.acmicpc.net/problem/2577
문제를 해결하는데 큰 어려움은 없었습니다. 코드는 다음과 같습니다:
#include <iostream>
using namespace std ;
int main(){
ios::sync_with_stdio(false) ;
cin.tie(NULL) ; cout.tie(NULL) ;
int a, b, c ;
cin >> a >> b >> c ;
long long product = a * b * c ;
int nums_cnt[10] = {0, };
while(product != 0){
nums_cnt[product%10] += 1 ;
product /= 10 ;
}
for(auto num : nums_cnt)
cout << num << endl ;
return 0 ;
}
해당 문제는 Github에서도 보실 수 있습니다:
https://github.com/gurcks8989/CodingTest/blob/master/BackJoon/HPS/P2577_Numbers.cpp
훈수 및 조언은 언제든 환영입니다.