2007年9月6日 星期四

小考四(B) 解答


/* C Programming Quiz 4B */
/*
小考四題目:完成函數 computeTriangleArea,以記算附圖的斜線面積。
*/
#include <stdio.h>
#include <stdlib.h>

double computeTriangleArea(double);

int main(void)
{
double theArea; /* 斜線面積 */

/* 你的程式從這裡開始 */

double a = 0.4, b;
theArea = computeTriangleArea(a);

printf("斜線面積是%20.8f\n", theArea);
system("pause");
return 0;
}

/* 你的程式這裡也有 */
double computeTriangleArea(double x){

return x * (30 - ((2 * 5 / 2) + (4 * 5 / 2) + (2 * 2.5 / 2)));
}

小考四(B)題目
返回小考目錄
回到首頁

1 則留言:

匿名 提到...

面積是( 5x*2x ) / 2 = 5*x*x

所以答案要乘上0.4之平方。