/* C Programming Quiz 4A */
/*
小考四題目:完成函數 computeCircleArea,以記算附圖的斜線面積。
提示:你將使用到 math.h 中的 M_PI。
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
double computeCircleArea(double);
int main(void)
{
double theArea; /* 斜線面積 */
/* 你的程式從這裡開始 */
double a = 10.25;
theArea = computeCircleArea(a);
printf("斜線面積是%20.8f\n", theArea);
system("pause");
return 0;
}
double computeCircleArea(double x)
{
double y = 7.5;
return (2 * x * x + y * y) * M_PI / 4 ;
}
小考四(A)題目
返回小考目錄
回到首頁
2 則留言:
Thanks. It's fixed.
應該會一樣的
張貼留言