Проблем със задача 08. Condense Array to Number от Lab Arrays
Защо не работи?
using System;
using System.Linq;
namespace _08._Condense_Array_to_Number
{
class Program
{
static void Main(string[] args)
{
int[] nums = Console.ReadLine()
.Split()
.Select(int.Parse)
.ToArray();
if (nums.Length == 1)
{
Console.WriteLine(nums[0]);
}
else
{
int j = nums.Length;
while (j > 1)
{
int[] condensed = new int[j - 1];
for (int i = 0; i < j-1; i++)
{
condensed[i] = nums[i] + nums[i + 1];
}
int[] nums = new int[j-1];
for (int i = 0; i < j; i++)
{
nums[i] = condensed[i];
}
j--;
}
Console.WriteLine(nums[0]);
}
}
}
}
Пич , ти си гений.