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 the number of straight lines.

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)
        {
            // Asking the user to input the number of straight lines in the polygon
            Console.WriteLine("Input number of straight lines of the polygon:");

            // Reading the input number from the user and converting it to an integer
            int n = Convert.ToInt32(Console.ReadLine());

            // Displaying the sum of the interior angles of the polygon using the 'test' method
            Console.WriteLine("Sum of the interior angles (in degrees) of the said polygon: " + test(n));
        }

        // Method to calculate the sum of interior angles of a polygon
        public static int test(int num)
        {
            // Formula to calculate the sum of interior angles of a polygon
            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:

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.



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/csharp-basic-exercise-88.php