Advertisement
Spocoman

05. Special Numbers

Jan 16th, 2022
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.22 KB | None | 0 0
  1. using System;
  2.  
  3. namespace SpecialNumbers
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string n = Console.ReadLine();
  10.  
  11.             for (int i = 1; i <= int.Parse(n); i++)
  12.             {
  13.                 int sum = 0;
  14.                 int x = i;
  15.                 for (int j = 0; j < i.ToString().Length; j++)
  16.                 {
  17.                     sum += x % 10;
  18.                     x /= 10;
  19.                 }
  20.  
  21.                 if (sum == 5 || sum == 7 || sum == 11)
  22.                 {
  23.                     Console.WriteLine($"{i} -> True");
  24.                 }
  25.                 else
  26.                 {
  27.                     Console.WriteLine($"{i} -> False");
  28.                 }
  29.             }
  30.         }
  31.     }
  32. }
  33.  
  34.  
  35.  
  36.  
  37. Решение с LINQ:
  38.  
  39. using System;
  40. using System.Linq;
  41.  
  42. namespace SpecialNumbers
  43. {
  44.     class Program
  45.     {
  46.         static void Main(string[] args)
  47.         {
  48.             int n = int.Parse(Console.ReadLine());
  49.            
  50.             for (int i = 1; i <= n; i++)
  51.             {
  52.                 int sum = i.ToString().Sum(a => (a - 48));
  53.                 Console.WriteLine($"{i} -> {sum == 5 || sum == 7 || sum == 11}");
  54.             }
  55.         }
  56.     }
  57. }
  58.  
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement