https://www.acmicpc.net/problem/2577 3개의 숫자 A, B, C를 입력받고, A * B * C를 한 결과에 0~9 각각의 숫자가 몇번 사용되었는지 출력하는 문제다. A, B, C를 입력받고, 세 수를 곱한 결과를 string으로 변환하여 각 숫자별로 count를 세어 출력 하도록 구현하였다. #include #include using namespace std; int main() { unsigned short first, second, third; cin >> first >> second >> third; long long calculated_value = first * second * third; string toStr = to_string(calculated_value);..