https://www.acmicpc.net/problem/2231
using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
namespace _2231
{
class Program
{
static void Main()
{
StreamReader sr = new StreamReader(Console.OpenStandardInput());
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
int n = int.Parse(sr.ReadLine());
int m = 0;
int sum = 0;
for (int i = 1; i < n; i++)
{
int num = i;
sum = num;
while (true)
{
if (num == 0) break;
sum += num % 10;
num /= 10;
}
if (sum == n)
{
m = i;
break;
}
}
sw.Write(m);
sr.Close();
sw.Flush();
sw.Close();
}
}
}
'알고리즘 > 백준 BOJ' 카테고리의 다른 글
[ BOJ/C# ] 14940 쉬운 최단거리 (0) | 2023.10.19 |
---|---|
[ BOJ/C# ] 21736 헌내기는 친구가 필요해 (0) | 2023.10.19 |
[ BOJ/C# ] 2292 벌집 (0) | 2023.10.17 |
[ BOJ/C# ] 2609 최대공약수와 최소공배수 (0) | 2023.10.16 |
[ BOJ/C# ] 10026 적록색약 (0) | 2023.10.14 |