728x90
using System;
using System.Text;
public class Program
{
public static void Main()
{
StringBuilder sb = new StringBuilder();
int a= int.Parse(Console.ReadLine());
int b= int.Parse(Console.ReadLine());
int c= int.Parse(Console.ReadLine());
int a_b_c = a * b * c;
String abc = a_b_c.ToString();
int[] abc2 = new int[abc.Length];
int[] answer = new int[10];
for (int i = 0; i < abc.Length; i++)
{
abc2[i] = (int)Char.GetNumericValue(abc[i]);
}
for (int i = 0; i < 10; i++)
{
answer[i]=0;
}
for (int i = 0; i < abc.Length; i++)
{
answer[abc2[i]]++;
}
sb.Append(answer);
for (int j = 0; j < 10; j++)
{
Console.WriteLine(answer[j].ToString());
}
}
}
abc2[i] = (int)Char.GetNumericValue(abc[i]);
-> char을 int로 바꾸기
728x90
728x90
'c# > 백준알고리즘' 카테고리의 다른 글
[백준 c#] 24060번 알고리즘 수업 - 병합 정렬 1 (1) | 2022.09.13 |
---|---|
[백준 2798번 c#] 블랙잭 (0) | 2022.07.17 |
[백준 11653번 c#] 소인수분해 구하기 (0) | 2022.07.11 |
[백준 10757번 c#] 큰 수 A+B (0) | 2022.07.11 |
[백준15552번 c#] 빠른 A+B (0) | 2022.07.05 |