Write a C# Sharp program to create a new array taking the first two elements from a given array. If the length of the given array is less than 2 then return the give array
- برمجة سي شارب
- برمجة
- 2021-05-17
- MarwaMohammed
الأجوبة
using System;
namespace exercises
{
class Program
{
static void Main(string[] args)
{
// Console.WriteLine(test(new[] {1}));
// Console.WriteLine(test(new[] {1,2,9}));
// Console.WriteLine(test(new[] {1,2,9,3,3}));
int[] item = test(new[] { 1, 5, 7, 9, 11, 13 });
Console.Write("New array: ");
foreach(var i in item)
{
Console.Write(i.ToString()+" ");
}
}
static int[] test(int[] numbers)
{
int[] front_nums;
if (numbers.Length >= 2)
{
front_nums = new int[] { numbers[0], numbers[1] };
}
else if (numbers.Length > 0)
{
front_nums = new int[] { numbers[0] };
}
else
{
front_nums = new int[0];
}
return front_nums;
}
}
}أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال