diff options
Diffstat (limited to 'progs/a526.py')
-rw-r--r-- | progs/a526.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/progs/a526.py b/progs/a526.py new file mode 100644 index 0000000..acf2c66 --- /dev/null +++ b/progs/a526.py @@ -0,0 +1,4 @@ +from math import tan, pi
+def area_polygon(s,l):
+ area = s * (l ** 2) / (4 * tan(pi / s))
+ return area
\ No newline at end of file |