C語(yǔ)言怎么引入math庫(kù)

小億
271
2024-05-14 17:14:14

要在C語(yǔ)言中引入math庫(kù),需要在代碼中包含以下語(yǔ)句:

#include <math.h>

這樣就可以使用math庫(kù)中定義的數(shù)學(xué)函數(shù)了。例如,可以使用sqrt函數(shù)來(lái)計(jì)算一個(gè)數(shù)的平方根:

#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;
}

0