Advertisement
Spocoman

02. From Left to The Right

Jan 19th, 2022
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.18 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FromLeftToTheRight
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int num = int.Parse(Console.ReadLine());
  10.            
  11.             for (int i = 0; i < num; i++)
  12.             {
  13.                 string number = Console.ReadLine();
  14.                 string number1 = string.Empty;
  15.                 string number2 = string.Empty;
  16.                 long sum1 = 0;
  17.                 long sum2 = 0;
  18.                 int x = 0;
  19.                 for (int j = 0; j < number.Length; j++)
  20.                 {
  21.                     if (number[j] == ' ')
  22.                     {
  23.                         x++;
  24.                         j++;
  25.                     }
  26.                     if (x == 1)
  27.                     {
  28.                         number2 += number[j];
  29.                     }
  30.                     else
  31.                     {
  32.                         number1 += number[j];
  33.                     }
  34.                 }
  35.  
  36.                 long n1 = long.Parse(number1);
  37.                 long n2 = long.Parse(number2);
  38.                 if (n1 >= n2)
  39.                 {
  40.                     for (int y = 0; y < number1.Length; y++)
  41.                     {
  42.                         if (n1 % 10 == '-')
  43.                         {
  44.                             break;
  45.                         }
  46.                         else
  47.                         {
  48.                             sum1 += n1 % 10;
  49.                             n1 /= 10;
  50.                         }                      
  51.                     }
  52.                     Console.WriteLine(Math.Abs(sum1));
  53.                 }
  54.                 else
  55.                 {
  56.                     for (int z = 0; z < number2.Length; z++)
  57.                     {
  58.  
  59.                         if (n2 % 10 == '-')
  60.                         {
  61.                             break;
  62.                         }
  63.                         else
  64.                         {
  65.                             sum2 += n2 % 10;
  66.                             n2 /= 10;
  67.                         }                      
  68.                     }
  69.                     Console.WriteLine(Math.Abs(sum2));
  70.                 }
  71.             }
  72.         }
  73.     }
  74. }
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement