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 it is possible to add two integers to get the third integer from three given integers


C# Sharp Basic Algorithm: Exercise-47 with Solution

Write a C# Sharp program to check whether it is possible to add two integers to get the third integer from three given integers.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Check if it is possible to add two integers to get the third integer from three given integers.

Sample Solution:-

C# Sharp Code:

using System;
using System.Linq;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {
            Console.WriteLine(test(1, 2, 3));
            Console.WriteLine(test(4, 5, 6));
            Console.WriteLine(test(-1, 1, 0));
            Console.ReadLine();
        }
        public static bool test(int x, int y, int z)
        {
             return x == y + z || y == x + z || z == x + y;
        }
    }
}

Sample Output:

True
False
True

Flowchart:

C# Sharp: Flowchart: Check whether it is  possible to add two integers to get the third integer from three given integers.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program check whether a given string starts with "f" or ends with "b". If the string starts with "f" return "Fizz" and return "Buzz" if it ends with "b" If the string starts with "F" and ends with "B" return "FizzBuzz". In other cases return the original string.
Next: Write a C# Sharp program to check if y is greater than x, and z is greater than y from three given integers x,y,z.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.