Spocoman

02. Equal Sums Even Odd Position

Nov 22nd, 2021 (edited)
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.64 KB | None | 0 0
  1. using System;
  2.  
  3. namespace EqualSumsEvenOddPosition
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int start = int.Parse(Console.ReadLine());
  10.             int final = int.Parse(Console.ReadLine());
  11.  
  12.             for (int i = start; i <= final; i++)
  13.             {
  14.                 int odd = 0;
  15.                 int even = 0;
  16.                 int digit = i;
  17.  
  18.                 for (int x = 0; x < 6; x++)
  19.                 {
  20.                     if (x % 2 == 0)
  21.                     {
  22.                         even += digit % 10;
  23.                     }
  24.                     else
  25.                     {
  26.                         odd += digit % 10;
  27.                     }
  28.                     digit /= 10;
  29.                 }
  30.  
  31.                 if (odd == even)
  32.                 {
  33.                     Console.Write(i + " ");
  34.                 }
  35.             }
  36.         }
  37.     }
  38. }
  39.  
  40. РЕШЕНИЕ С ТЕРНАРЕН ОПЕРАТОР:
  41.  
  42. using System;
  43.  
  44. namespace EqualSumsEvenOddPosition
  45. {
  46.     class Program
  47.     {
  48.         static void Main(string[] args)
  49.         {
  50.             int start = int.Parse(Console.ReadLine());
  51.             int final = int.Parse(Console.ReadLine());
  52.  
  53.             for (int i = start; i <= final; i++)
  54.             {
  55.                 int odd = 0;
  56.                 int even = 0;
  57.                 int digit = i;
  58.  
  59.                 for (int x = 0; x < 6; x++)
  60.                 {
  61.                     _ = x % 2 == 0 ? even += digit % 10 : odd += digit % 10;
  62.                     digit /= 10;
  63.                 }
  64.  
  65.                 Console.Write(odd == even ? i + " " : "");
  66.             }
  67.         }
  68.     }
  69. }
  70.  
  71.  
  72. РЕШЕНИЕ С ТО.STRING():
  73.  
  74. using System;
  75.  
  76. namespace EqualSumsEvenOddPosition
  77. {
  78.     class Program
  79.     {
  80.         static void Main(string[] args)
  81.         {
  82.             int start = int.Parse(Console.ReadLine());
  83.             int final = int.Parse(Console.ReadLine());
  84.  
  85.             for (int i = start; i <= final; i++)
  86.             {
  87.                 int odd = 0;
  88.                 int even = 0;
  89.                 string current = i.ToString();
  90.                 for (int x = 0; x < current.Length; x++)
  91.                 {
  92.                     int digit = int.Parse(current[x].ToString());
  93.  
  94.                     if (x % 2 == 0)
  95.                     {
  96.                         even += digit;
  97.                     }
  98.                     else
  99.                     {
  100.                         odd += digit;
  101.                     }
  102.                 }
  103.  
  104.                 if (odd == even)
  105.                 {
  106.                     Console.Write(i + " ");
  107.                 }
  108.             }
  109.         }
  110.     }
  111. }
  112.  
Add Comment
Please, Sign In to add comment