Advertisement
yanass

Condense Array to Number

May 30th, 2019
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.91 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace Condense_Array_to_Number
  5. {
  6.     class Program
  7.     {
  8.         static void Main()
  9.         {
  10.             //read the array
  11.             string text = Console.ReadLine();
  12.             int[] arrayNums = text.Split().Select(int.Parse).ToArray();
  13.  
  14.             //get the array length
  15.             int n = arrayNums.Length - 1;
  16.  
  17.             if (arrayNums.Length == 1)
  18.                 Console.WriteLine(arrayNums[0]);
  19.             else
  20.             {
  21.                 while (arrayNums.Sum() - arrayNums[0] != 0)
  22.                 {
  23.                     for (int i = 0; i < arrayNums.Length - 1; i++)
  24.                     {
  25.                         arrayNums[i] = arrayNums[i] + arrayNums[i + 1];
  26.                     }
  27.                     arrayNums[n] = 0;
  28.                     n--;
  29.                 }
  30.                 Console.WriteLine(arrayNums[0]);
  31.             }
  32.         }
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement