Q:

Write a C# Sharp program to create a new array of given length using the odd numbers from a given array of positive integers

0

Write a C# Sharp program to create a new array of given length using the odd numbers from a given array of positive integers

Sample Output:

New array: 1 3 5

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,3,5,7,9,10},3);          
           Console.Write("New array: ");         
           foreach(var i in item)
            {
               Console.Write(i.ToString()+" ");
            }     
        }                  
        public static int[] test(int[] nums, int count)
           {
            int[] evens = new int[count];
            int j = 0;

            for (int i = 0; j < count; i++)
            {
                if (nums[i] % 2 != 0)
                {
                    evens[j] = nums[i];
                    j++;
                }
            }

            return evens;
        }
    
    } 
}

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