Q:

Write a C# Sharp program to create a new array from a given array of integers shifting all zeros to left direction

0

Write a C# Sharp program to create a new array from a given array of integers shifting all zeros to left direction

Sample Output:

New array: 0 0 1 3 5 7 2 9 11

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {               
           int[] item = test(new[] { 1, 2, 0, 3, 5, 7, 0, 9, 11 });            
           Console.Write("New array: ");         
           foreach(var i in item)
            {
               Console.Write(i.ToString()+" ");
            }     
          }               
        static int[] test(int[] numbers)
         {
           int pos = 0;
            for (int i = 0; i < numbers.Length; i++)
            {
                if (numbers[i] == 0)
                {
                    numbers[i] = numbers[pos];
                    numbers[pos++] = 0;
                }
            }
            return numbers;
         }    
    } 
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now