Advertisement
Spocoman

10. Top Number

Jan 26th, 2022 (edited)
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.83 KB | None | 0 0
  1. using System;
  2.  
  3. namespace TopNumber
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int n = int.Parse(Console.ReadLine());
  10.  
  11.             TopNumber(n);
  12.         }
  13.  
  14.         static void TopNumber(int n)
  15.         {
  16.             for (int i = 8; i <= n; i++)
  17.             {
  18.                 int c = i;
  19.                 int odd = 0;
  20.                 int sum = 0;
  21.                 for (int j = 0; j < n.ToString().Length; j++)
  22.                 {
  23.                     if (c % 2 == 1)
  24.                     {
  25.                         odd++;
  26.                     }
  27.                     sum += c % 10;
  28.                     c /= 10;
  29.                 }
  30.                 if (sum % 8 == 0 && odd > 0)
  31.                 {
  32.                     Console.WriteLine(i);
  33.                 }
  34.             }
  35.         }
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement