/* C Programming Quiz 4A */
/*
小考四題目:完成函數 computeCircleArea,以記算附圖的斜線面積。
提示:你將使用到 math.h 中的 M_PI。
*/
#include <stdio.h>
#include <stdlib.h>
double computeCircleArea(double);
int main(void)
{
double theArea; /* 斜線面積 */
/* 你的程式從這裡開始 */
printf("斜線面積是%20.8f", theArea);
system("pause");
return 0;
}
附圖:
沒有留言:
張貼留言