設圓半徑80,計算面積和周長

2021-10-07 10:40:53 字數 640 閱讀 9885

設圓半徑80,計算面積和周長

var radius =80;

var pai =

3.14

;var perimeter =

2* pai * radius;

//小數點保留2位 用到的是.tofixed(2)

perimeter=perimeter.

tofixed(2

);var area = pai * math.

pow(radius,2)

;//小數點保留2位 用到的是.tofixed(2)

area=area.

tofixed(2

);document.

write

('圓半徑是80,它的周長是:'

+ perimeter +''

);document.

write

('圓半徑是80,它的面積是:'

+ area +''

);//總結:浮點數在計算中計算會出現精度溢位的問題,解決方案:.tofixed(2) .tofixed(2)會自動轉換為字串 所以需要下面的操作

//注意:num = number(num.tofixed(2));

圓的面積和周長

include 巨集定義常量,可直接定義常量 define pi 3.14159 圓的面積s pi r r 圓的周長l 2 pi r 圓的半徑3 int main void auto 定義區域性變數 在函式內部定義的變數 可在資料型別前加修飾,可加可不加 float 浮點型,並用 f列印 auto ...

第1關 計算圓的面積和周長

任務描述 本關任務 從鍵盤輸入圓的半徑r,求圓的周長和面積,其公式分別為 周長 2 r,面積 r r。注意 要求半徑r必須從鍵盤輸入。的值取常數值3.14。任務分析 本任務根據圓的半徑求出圓的周長和面積。周長和面積公式很簡單,但是需要計算機處理。計算機處理資料需要定義變數,本任務中需要定義半徑 周長...

Problem E 求圓的面積和周長

problem e 求圓的面積和周長 time limit 1 sec memory limit 2 mb submit 16481 solved 6715 submit status web board description 從鍵盤輸入圓的半徑,求圓的面積和周長,圓周率取3.14。input 輸...