Spocoman

09. Left and Right Sum

Nov 19th, 2021 (edited)
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.75 KB | None | 0 0
  1. using System;
  2.  
  3. namespace LeftAndRightSum
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int num = int.Parse(Console.ReadLine());
  10.             int sumL = 0;
  11.             int sumR = 0;
  12.             for (int i = 0; i < num; i++)
  13.             {
  14.                 sumL = sumL + int.Parse(Console.ReadLine());
  15.  
  16.             }
  17.             for (int i = 0; i < num; i++)
  18.             {
  19.                 sumR = sumR + int.Parse(Console.ReadLine());
  20.             }
  21.             if (sumL == sumR)
  22.             {
  23.                 Console.WriteLine($"Yes, sum = {sumL}");
  24.             }
  25.             else
  26.             {
  27.                 Console.WriteLine($"No, diff = {Math.Abs(sumL - sumR)}");
  28.             }  
  29.         }
  30.     }
  31. }
  32.  
Add Comment
Please, Sign In to add comment