題目:
設計一程式計算元周長及面積(輸入半徑)
和
任意輸入五個FLOAT數值於陣列中,找出其中負直最大者
還要著名為什麼要這樣寫,要解釋為什麼要這樣用@@
2006-06-26 21:21:46 · 2 個解答 · 發問者 Money 3 in 電腦與網際網路 ➔ 程式設計
#include
#include
#include
#define PI 3.14159
void main(){
float radius;
printf("Input a radius: ");
scanf("%f",&radius);
printf("radius: %f\n",radius); //半徑
printf("perimeter: %f\n",2*radius*PI); //周長
printf("area: %f\n",radius*radius*PI); //面積
system("pause");
}
2006-06-27 03:48:26 補充:
因為圓的周長是 2πr ,面積是 π( r 的平方 )。
2006-06-26 23:43:46 · answer #1 · answered by Big_John-tw 7 · 0⤊ 0⤋
第二題在此,請過目:
http://img484.imageshack.us/img484/6406/answer12tz.jpg
2006-06-27 08:01:27 · answer #2 · answered by Almond 6 · 0⤊ 0⤋