Advertisement
Spocoman

04. Fold and Sum

Jan 23rd, 2022
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.76 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace FoldAndSum
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int[] num = Console.ReadLine().Split().Select(int.Parse).ToArray();
  11.             int[] output = new int[num.Length / 2];
  12.  
  13.             for (int i = 0; i < output.Length; i++)
  14.             {
  15.                 if (i < output.Length / 2)
  16.                 {
  17.                     output[i] = num[i + num.Length / 4] + num[num.Length / 4 - (1 + i)];
  18.                 }
  19.                 else
  20.                 {
  21.                     output[i] = num[i + num.Length / 4] + num[num.Length + (num.Length / 4) - (i + 1)];
  22.                 }
  23.             }
  24.             Console.WriteLine(string.Join(" ", output));
  25.         }
  26.     }
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement