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 two given integers, each in the range 10..99


C# Sharp Basic Algorithm: Exercise-53 with Solution

Write a C# Sharp program to check two given integers, each in the range 10..99. Return true if a digit appears in both numbers, such as the 3 in 13 and 33

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Check two given integers, each in the range 10..99.

Sample Solution:-

C# Sharp Code:

using System;
using System.Linq;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {
            Console.WriteLine(test(11, 21));
            Console.WriteLine(test(11, 20));
            Console.WriteLine(test(10, 10));
            Console.ReadLine();
        }
        
        public static bool test(int x, int y)
        {
           return x / 10 == y / 10 || x / 10 == y % 10 || x % 10 == y / 10 || x % 10 == y % 10;
        }
    }
}

Sample Output:

True
False
True

Flowchart:

C# Sharp: Flowchart: Check two given integers, each in the range 10..99.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to find the larger from two given integers. However if the two integers have the same remainder when divided by 7,then the return the smaller integer. If the two integers are the same, return 0.
Next: Write a C# Sharp program to compute the sum of two given non-negative integers x and y as long as the sum has the same number of digits as x. If the sum has more digits than x then return x without y.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.