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 Exercises: Find the sum of the interior angles (in degrees) of a given Polygon

C# Sharp Basic: Exercise-88 with Solution

Write a C# Sharp program to find the sum of the interior angles (in degrees) of a given Polygon. Input number of straight line(s).

From Wikipedia,
In geometry, a polygon is a plane figure that is described by a finite number of straight line segments connected to form a closed polygonal chain or polygonal circuit. The solid plane region, the bounding circuit, or the two together, may be called a Polygon.

Sample Solution:

C# Sharp Code:

using System;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Input number of straight lines of the polygon:");
            int n = Convert.ToInt32(Console.ReadLine());
            Console.WriteLine("Sum of the interior angles (in degrees) of the said polygon: " + test(n));            
        }
        public static int test(int num)
        {
            return 180 * (num - 2);
        }
    }
}

Sample Output:

Input number of straight lines of the polygon:
Sum of the interior angles (in degrees) of the said polygon: -360

Flowchart:

Flowchart: C# Sharp Exercises - Find the sum of the interior angles (in degrees) of a given Polygon.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to reverse a boolean value.
Next: Write a C# Sharp program to count positive and negative numbers in a given array of integers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.