函數名: sqrt
頭檔:<math.h>
用 法: double sqrt(double x);
功 能: 計算一個非負實數的平方根
參 數: double x 要操作的非負實數雙精度數
傳回值:傳回一個非負實數的平方根
程式例: 求雙精確度x的平方根,並將結果輸出
#include<stdio.h>#include<math.h>intmain(void){doublex=4.0,result;result=sqrt(x);printf(Thesquarerootof%lfis%lfn,x,result);return0;}
運行結果:
Thesquarerootof4.000000is2.000000