반응형
https://www.acmicpc.net/problem/2577
코드
#include <stdio.h>
int main(void) {
int a, b, c;
int result;
scanf("%d %d %d", &a, &b, &c);
result = a * b * c;
int count[10] = { 0, };
int n = result;
int index;
while (n > 0)
{
index = n % 10;
count[index]++;
n = n / 10;
}
//계산 값 출력
for (int i = 0; i < 10; i++)
{
printf("%d\n",count[i]);
}
}
반응형
'algorithm > Baekjoon' 카테고리의 다른 글
[python] 백준 2675_문자열 반복 (0) | 2021.08.04 |
---|---|
[python] 백준 10809_알파벳 찾기 (0) | 2021.08.04 |
[python] 백준 11720_숫자의 합 (0) | 2021.07.27 |
[python] 백준 11654_아스키코드 (0) | 2021.07.27 |
[c언어] 백준 1065_한수 (0) | 2021.07.24 |