1.試輸入a、b、c、d、e及f六個變數值,並計算下列公式值。
公式:
2.題目已提供程式碼片段,執行結果如參考畫面,程式碼有語法、邏輯或其他項目上的錯誤,請全數修正。
參考數字:
依照範例所給的數字,以下是運算後的參考答案。
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main ()
{
double result;
double a, b, c, d, e, f;
printf("請輸入a, b, c的值: ");
scanf("%lf %lf %lf", &a, &b, &c);
printf("請輸入d, e, f的值: ");
scanf("%lf %lf %lf", &d, &e, &f);
result = abs(a)*ceil(b)+power(c, d)*square(e)+log(f);
printf("result = %f", result);
return0;
}
輸入 6 數 a、b、c、d、e、f 均為浮點數。
輸入以三個為一組,先輸入 a、b、c,再輸入 d、e、f。
公式運算的結果。
-1.23 3.5 3 5 .01 100
請輸入a, b, c的值: -1.23 3.5 3 請輸入d, e, f的值: 5 .01 100 result = 29.990000
abs() 並非 浮點數的絕對值函數。
編號 | 身分 | 題目 | 主題 | 人氣 | 發表日期 |
沒有發現任何「解題報告」 |