c語言sqrt函數的用法
#sqrt函數用來計算一個非負實數的平方根。
sqrt的函數原型: 在VC6.0中的math.h頭檔的函式原型為double sqrt(double);
#說明:sqrt即Square Root Calculations(平方根計算),藉由此運算可以考驗CPU的浮點能力。
頭檔:math.h
程式範例:
#include <math.h> #include <stdio.h> int main(void) { double x = 4.0, result; result = sqrt(x); //result*result = x printf("The square root of % is %\n", x, result); return 0; }
推薦學習:c語言影片教學
以上是C語言sqrt函數的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!