w3resource

C#: Compute the sum of the two given integers


C# Sharp Basic Algorithm: Exercise-40 with Solution

Write a C# Sharp program to compute the sum of the two given integers. If the sum is in the range 10..20 inclusive return 30.

Visual Presentation:

C# Sharp: Basic Algorithm Exercises - Compute the sum of the two 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 integers and printing the results
            Console.WriteLine(test(12, 17));   // Output: 30
            Console.WriteLine(test(2, 17));    // Output: 19
            Console.WriteLine(test(22, 17));   // Output: 30
            Console.WriteLine(test(20, 0));    // Output: 30
            Console.ReadLine(); // Keeping the console window open
        }

        // Method to check the sum of two integers and return a specific value based on conditions
        public static int test(int a, int b)
        {
            // Check if the sum of 'a' and 'b' is between 10 and 20 (inclusive)
            // If true, return 30; otherwise, return the actual sum of 'a' and 'b'
            return a + b >= 10 && a + b <= 20 ? 30 : a + b;
        }
    }
}

Sample Output:

29
30
39
30

Flowchart:

C# Sharp: Flowchart: Compute the sum of the two given integers.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to check if a triple is presents in an array of integers or not. If a value appears three times in a row in an array it is called a triple.
Next: Write a C# Sharp program that accept two integers and return true if either one is 5 or their sum or difference is 5.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/csharp-exercises/basic-algo/csharp-basic-algorithm-exercises-40.php