8# Finding Sum of Polygon Angles | Scratch Coding Practices & challenging Tasks
YouTube Viewers YouTube Viewers
11.2K subscribers
357 views
0

 Published On Sep 3, 2022

Given an n-sided regular polygon n, return the total sum of internal angles (in degrees).

Examples
sumPolygon(3) ➞ 180
sumPolygon(4) ➞ 360
sumPolygon(6) ➞ 720
Notes
n will always be greater than 2.
The formula (n - 2) x 180 gives the sum of all the measures of the angles of an n-sided polygon.

show more

Share/Embed