Advertisement
Spocoman

08. Magic Sum

Jan 21st, 2022
100
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. using System.Linq;
  3.  
  4. namespace MagicSum
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int[] arr = Console.ReadLine().Split().Select(int.Parse).ToArray();
  11.             int num = int.Parse(Console.ReadLine());
  12.  
  13.             for (int i = 0; i < arr.Length; i++)
  14.             {
  15.                 int furstNum = arr[i];
  16.  
  17.                 for (int j = i + 1; j < arr.Length; j++)
  18.                 {
  19.                     int secondNum  = arr[j];
  20.  
  21.                     if (furstNum + secondNum == num)
  22.                     {
  23.                         Console.WriteLine($"{furstNum} {secondNum}");
  24.                         break;
  25.                     }
  26.                 }
  27.             }
  28.         }
  29.     }
  30. }
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement