要在C語言中引入math庫,需要在代碼中包含以下語句:
#include <math.h>
這樣就可以使用math庫中定義的數學函數了。例如,可以使用sqrt函數來計算一個數的平方根:
#include <stdio.h>
#include <math.h>
int main() {
double num = 16.0;
double result = sqrt(num);
printf("The square root of %f is %f\n", num, result);
return 0;
}