Advertisement
marto9119

Untitled

Jan 23rd, 2023
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.29 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace MyApp
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int pairs = int.Parse(Console.ReadLine());
  10.             int maxDif = int.MinValue;
  11.             int intNum = 0, equally = 0, difference = 0,  countEqually = 0;
  12.             int lastNum = 0;
  13.  
  14.             for (int i = 0; i < pairs; i++)
  15.             {
  16.                 int firstNumb = int.Parse(Console.ReadLine());
  17.                 intNum += firstNumb;
  18.  
  19.                 for (int ii = 0; ii < 1; ii++)
  20.                 {
  21.                     int secondNumb = int.Parse(Console.ReadLine());
  22.                     intNum += secondNumb;
  23.                 }
  24.                 if (i == 0) { equally = intNum ; }
  25.                 if (equally == intNum) { countEqually++; }
  26.  
  27.                
  28.  
  29.                 difference = Math.Abs(lastNum - intNum);
  30.                 lastNum = intNum;
  31.  
  32.                 if (difference > maxDif && i != 0) { maxDif = difference; }
  33.  
  34.                
  35.                 intNum = 0;
  36.             }
  37.             if (pairs == countEqually )
  38.             {
  39.                 Console.WriteLine($"Yes, value={equally}");
  40.             }
  41.             else
  42.             {
  43.                 Console.WriteLine($"No, maxdiff={maxDif}");
  44.             }
  45.         }
  46.  
  47.     }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement