Q:

Write a C# Sharp program to check if a given array of integers contains a 3 or a 5

0

Write a C# Sharp program to check if a given array of integers contains a 3 or a 5

Sample Output:

True
True
True
False

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)
        {               
         Console.WriteLine(test(new[] { 5, 5, 5, 5, 5 })); 
         Console.WriteLine(test(new[] { 3, 3, 3, 3 })); 
         Console.WriteLine(test(new[] { 3, 3, 3, 5, 5, 5})); 
         Console.WriteLine(test(new[] { 1, 6, 8, 10})); 
        }           
       static bool test(int[] nums)
         {
           for (int i = 0; i < nums.Length; i++)
            {
                if (nums[i] != 3 && nums[i] != 5) return false;
            }
            return true;
         }    
   } 
}

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