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: Check whether the number of 3's is greater than the number of 5's


C# Sharp Basic Algorithm: Exercise-116 with Solution

Write a C# Sharp program to check whether the number of 3's is greater than the number of 5's.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Check whether the number of 3's is greater than the number of 5's.

Sample Solution:

C# Sharp Code:

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {               
         Console.WriteLine(test(new[] { 1, 5, 6, 9, 3, 3 })); 
         Console.WriteLine(test(new[] { 1, 5, 5, 5, 10, 17 })); 
         Console.WriteLine(test(new[] { 1, 3, 3, 5, 5, 5})); 
        }           
       static bool test(int[] nums)
         {
             int no_3 = 0, no_5 = 0;

            for (int i = 0; i < nums.Length; i++)
            {
                if (nums[i] == 3) no_3++;
                if (nums[i] == 5) no_5++;
            }

            return no_3 > no_5;
         }    
   } 
}

Sample Output:

True
False
False

Flowchart:

C# Sharp: Flowchart: Check whether the number of 3's is greater than the number of 5's.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to check whether the sum of all 5' in the array exactly 15 in a given array of integers.
Next: Write a C# Sharp program to check whether a given array of integers contains a 3 or a 5.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.