Advertisement
Spocoman

03. Zig-Zag Arrays

Jan 21st, 2022
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.88 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace ZigZag
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int n = int.Parse(Console.ReadLine());
  11.  
  12.             int[] firstArr = new int[n];
  13.             int[] secondArr = new int[n];
  14.  
  15.             for (int i = 0; i < n; i++)
  16.             {
  17.                 int[] current = Console.ReadLine().Split(" ").Select(int.Parse).ToArray();
  18.  
  19.                 if (i % 2 == 0)
  20.                 {
  21.                     firstArr[i] = current[0];
  22.                     secondArr[i] = current[1];
  23.                 }
  24.                 else
  25.                 {
  26.                     firstArr[i] = current[1];
  27.                     secondArr[i] = current[0];
  28.                 }
  29.             }
  30.             Console.WriteLine(string.Join(" ",firstArr));
  31.             Console.WriteLine(string.Join(" ", secondArr));
  32.         }
  33.     }
  34. }
  35.  
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement