Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Basic Algorithm Exercises: Count the number of even elements in a given array of integers


C# Sharp Basic Algorithm: Exercise-109 with Solution

Write a C# Sharp program to count the number of even elements in a given array of integers.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Count the number of even elements in a given array of integers.

Sample Solution:-

C# Sharp Code:

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {                
         Console.WriteLine(test(new[] { 1, 5, 7, 9, 10, 12 })); 
        }           
       static int test(int[] nums)
          {
            int evens = 0;

            for (int i = 0; i < nums.Length; i++)
            {
                if (nums[i] % 2 == 0) evens++;
            }
            return evens;
          }    
   }
}

Sample Output:

2

Flowchart:

C# Sharp: Flowchart: Count the number of even elements in a given array of integers.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: 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.
Next: Write a C# Sharp program to compute the difference between the largest and smallest values in a gvien array of integers and length one or more.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.