w3resource

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


Sum of Two Equals Third

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

Visual 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 declaration
    class Program
    {
        // Main method - entry point of the program
        static void Main(string[] args)
        {
            // Calling the 'test' method with different integer values and printing the results
            Console.WriteLine(test(1, 2, 3));    // Output: True
            Console.WriteLine(test(4, 5, 6));    // Output: True
            Console.WriteLine(test(-1, 1, 0));   // Output: True
            Console.ReadLine(); // Keeping the console window open
        }

        // Method to check if any two numbers among three add up to the third number
        public static bool test(int x, int y, int z)
        {
            // Returns true if any two numbers among x, y, and z add up to the third number
            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.

For more Practice: Solve these Related Problems:

  • Write a C# program to check whether the sum of any two numbers equals the absolute value of the third.
  • Write a C# program to determine if the sum of the two smallest numbers equals the largest number.
  • Write a C# program to test if the product of two integers is equal to the third integer.
  • Write a C# program to return true if any number in the triplet is the average of the other two.

Go to:


PREV : Fizz, Buzz, FizzBuzz.
NEXT : Strict Increasing Order for Three Numbers.

C# Sharp Code Editor:



Improve this sample solution and post your code through Disqus

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.