[C++][伯俊]2577号:数字の個数
#include <iostream>
using namespace std;
int main(){
int A, B, C;
int N;
int cnts[10] = {0,}; // 0으로 채운 배열
cin >> A;
cin >> B;
cin >> C;
N = A * B * C;
while(N > 0)
{
cnts[N%10] += 1;
N /= 10;
}
for(int i = 0; i<10;i++)
{
cout << cnts[i] << endl;
}
return 0;
}
int cnts[10] = {0,};
{0,}に示すように、すべての値を0にリセットできます.Reference
この問題について([C++][伯俊]2577号:数字の個数), 我々は、より多くの情報をここで見つけました https://velog.io/@lea-hwang/C백준2577번-숫자의-개수テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol