dragonbs

EqualSumsEvenOddPosition

Jan 25th, 2023
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.00 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _02.EqualSumsEvenOddPosition
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int start = int.Parse(Console.ReadLine());
  10.             int end = int.Parse(Console.ReadLine());
  11.  
  12.             for (int i = start; i <= end; i++)
  13.             {
  14.                 string number = i.ToString();
  15.                 int evenSum = 0;
  16.                 int oddSum = 0;
  17.  
  18.                 for (int j = 0; j < number.Length; j++)
  19.                 {
  20.                     int currentDigit = int.Parse(number[j].ToString());
  21.  
  22.                     if (j % 2 == 0)
  23.                     {
  24.                         evenSum += currentDigit;
  25.                     }
  26.                     else
  27.                     {
  28.                         oddSum += currentDigit;
  29.                     }
  30.                 }
  31.  
  32.                 if (evenSum == oddSum)
  33.                 {
  34.                     Console.Write($"{i} ");
  35.                 }
  36.             }
  37.         }
  38.     }
  39. }
  40.  
Add Comment
Please, Sign In to add comment