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 a positive integer and return true if it contains a number 2


C# Sharp Basic Algorithm: Exercise-139 with Solution

Write a C# Sharp program to check a positive integer and return true if it contains a number 2.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Check a positive integer and return true if it contains a number 2.

Sample Solution:

C# Sharp Code:

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {               
             Console.WriteLine(test(123)); 
             Console.WriteLine(test(13)); 
             Console.WriteLine(test(222)); 
        }                  
        public static bool test(int n)
           {
             while (n > 0)
               {
                if (n % 10 == 2) return true;
                n /= 10;
               }
            return false;
        }    
    } 
}

Sample Output:

True
False
True

Flowchart:

C# Sharp: Flowchart: Check a positive integer and return true if it contains a number 2.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to create a new array from a given array of strings using all the strings whose length are matched with given string length.
Next: Write a C# Sharp program to create a new array of given length using the odd numbers from a given array of positive integers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.