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 Exercises: Check if an array contains an odd number

C# Sharp Basic: Exercise-53 with Solution

Write a C# program to check if an array contains an odd number.

Pictorial Presentation:

>C# Sharp Exercises: Check if an array contains an odd number

Sample Solution:

C# Sharp Code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

public class Exercise53
{  
   public static void Main() 
      {
         int[] nums = {2, 4, 7, 8, 6};
         Console.WriteLine("\nOriginal array: [{0}]", string.Join(", ", nums));
         Console.WriteLine("Check if an array contains an odd number? "+even_odd(nums));
      }  
        
    public static bool even_odd(int[] nums)  
    {
         foreach (var n in nums)
            {
                if (n % 2 != 0) 
                return true;
            }
        return false;
              
     } 
}

Sample Output:

Original array: [2, 4, 7, 8, 6]                                        
Check if an array contains an odd number? True 

Flowchart:

Flowchart: C# Sharp Exercises - Check if an array contains an odd number

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# program to create an new array, containing the middle elements of three arrays (each length 3) of integers.
Next: Write a C# program to get the century from a year.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.