백준 #2577 숫자의 개수

kkily·2021년 7월 1일
0

[알고리즘]

목록 보기
26/102

문제링크

#include <iostream>
#include <vector>

using namespace std;

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    long a, b, c;
    cin >> a >> b >> c;

    int arr[10] = {0};
    long num = a * b * c;
    while (num > 0)
    {
        arr[num % 10]++;
        num /= 10;
    }

    for (int i = 0; i < 10; i++)
    {
        cout << arr[i] << endl;
    }
}
profile
낄리의 개발 블로그╰(*°▽°*)╯

0개의 댓글

관련 채용 정보