Q:

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

0

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

Sample Output:

True
True
False
True

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)
         {
            var three = false;
            var five = false;

            for (int i = 0; i < nums.Length; i++)
            {
                if (nums[i] == 3) {three = true;}
                if (nums[i] == 5) {five  = true;}
                if (three && five) 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