Board logo

標題: 706 其他論題 [打印本頁]

作者: 李泳霖    時間: 2022-6-6 13:12     標題: 706 其他論題

本帖最後由 李泳霖 於 2022-6-6 15:24 編輯

設計說明:
1. 請利用公式計算公式值。
[attach]13202[/attach]

2. 修改程式碼片段中的程式語法、邏輯上的錯誤,執行結果如範例圖。
[attach]13203[/attach]

double exp(double x):自然數的指數e^x。
double sqrt(double x):參數 x 的平方根。
double pow(double x, double y):傳回參數 x 為底,參數 y 的次方值x^y。
double log(double x):自然對數logx。
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>

  4. int main ()
  5. {
  6.         int x, y;
  7.         double result;
  8.         printf("請輸入x, y的值: ");
  9.         scanf("%d %d", &x, &y);
  10.    
  11.         result=exp(5)*sqrt((pow(x, y)+log(100))/pow(x, 2)*pow(y, 3));
  12.         printf("result=%f\n", result);
  13.         system("PAUSE");
  14.      return 0;
  15. }
複製代碼

作者: 李泳霖    時間: 2022-6-6 13:12

此帖僅作者可見
作者: 鄭程富    時間: 2022-6-6 17:27

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2