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: Compute the sum of the two given integer values


C# Sharp Basic Algorithm: Exercise-1 with Solution

Write a C# Sharp program to compute the sum of the two given integer values. If the two values are the same, then return triple their sum.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Compute the sum of the two given integer values

Sample Solution:

C# Sharp Code:

using System;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(test(1,2));
            Console.WriteLine(test(3,2));
            Console.WriteLine(test(2,2));
            Console.ReadLine();
        }

        public static int test(int x, int y)
        {
            return x == y ? (x + y)*3 : x + y;
        }
    }
}

Sample Output:

3
5
12

Flowchart:

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

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: C# Sharp Basic Declarations and Expressions Home
Next: Write a C# Sharp program to get the absolute difference between n and 51. If n is greater than 51 return triple the absolute difference.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.