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 three given integers


C# Sharp Basic Algorithm: Exercise-57 with Solution

Write a C# Sharp program to compute the sum of the three given integers. However, if any of the values is in the range 10..20 inclusive then that value counts as 0, except 13 and 17.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Compute the sum of the three given integers.

Sample Solution:-

C# Sharp Code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {
            Console.WriteLine(test(4, 5, 7));
            Console.WriteLine(test(7, 4, 12));
            Console.WriteLine(test(10, 13, 12));
            Console.WriteLine(test(17, 12, 18));
            Console.ReadLine();
        }   
       public static int test(int x, int y, int z)
        {
            return Program.fix_num(x) + Program.fix_num(y) + Program.fix_num(z);
        }
        private static int fix_num(int n)
        {
            return (n < 13 && n > 9) || (n > 17 && n < 21) ? 0 : n;
        }
    }
}

Sample Output:

16
11
13
17

Flowchart:

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

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to compute the sum of the three integers. If one of the values is 13 then do not count it and its right towards the sum.
Next: Write a C# Sharp program to check two given integers and return the value whichever value is nearest to 13 without going over. Return 0 if both numbers go over.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.