w3resource

C#: Check if an array contains an odd number


Check Odd Number in Array

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() 
    {
        // Initializing an array of integers
        int[] nums = {2, 4, 7, 8, 6};

        // Displaying the original array
        Console.WriteLine("\nOriginal array: [{0}]", string.Join(", ", nums));

        // Checking if the array contains an odd number and displaying the result
        Console.WriteLine("Check if an array contains an odd number? " + even_odd(nums));
    }  

    // Function to check if the array contains an odd number
    public static bool even_odd(int[] nums)  
    {
        // Iterating through each element of the array
        foreach (var n in nums)
        {
            // Checking if the element is odd
            if (n % 2 != 0) 
                return true; // If an odd number is found, return true
        }
        return false; // If no odd number is found, 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

For more Practice: Solve these Related Problems:

  • Write a C# program to return true if an array contains more odd numbers than even numbers.
  • Write a C# program to count how many odd numbers are present in an array and return the positions of the first and last odd numbers.
  • Write a C# program to return true if every third element in an array is odd.
  • Write a C# program to return false if any odd number in the array is divisible by 3.

Go to:


PREV : Middle Elements of Three Arrays.
NEXT : Find Century of Year.

C# Sharp Code Editor:



What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.