Task Description
設計一個程式,輸入半徑後,可以列印出圓周率、該圓之半徑、周長以及面積。
提示:
12 #define _GNU_SOURCE
#include <math.h>
其中,圓周率使用 M_PI 這個包含在 math.h 中變數
#define _GNU_SOURCE 要放在最前面
Input Format
輸入半徑長,整數R
Output Format
印出圓周率
印出半徑長
印出周長
印出面積
注意:圓周率、周長、面積需印出小數點後五位,半徑無需小數部分
Sample Input
1 100
Sample Output
1234 pi=3.14159
radius=100
circumference=628.31853
area=31415.92654