首頁 > 後端開發 > C++ > c++中如何使用根號

c++中如何使用根號

下次还敢
發布: 2024-05-01 14:24:13
原創
973 人瀏覽過

C 中使用 sqrt() 函數求平方根,語法為:double y = sqrt(x);其中 x 為非負數,y 為計算出的平方根值。例:求 16 的平方根:#include ,double number = 16,double squareRoot = sqrt(number),cout << "平方根為:" << squareRoot

c++中如何使用根號

如何在C 中使用根號

在C 中,可以使用sqrt() 函數來求一個數的平方根。函數屬於math 函式庫,需要在程式中包含該頭檔:

<code class="cpp">#include <cmath></code>
登入後複製

以下是使用sqrt() 函數求平方根的語法:

<code class="cpp">double y = sqrt(x);</code>
登入後複製

其中:

  • x 是要計算平方根的數(必須為非負數)。
  • y 是計算出的平方根值。

範例:

求數字 16 的平方根:

<code class="cpp">#include <cmath>

int main() {
  double number = 16;
  double squareRoot = sqrt(number);
  cout << "平方根为:" << squareRoot << endl;

  return 0;
}</code>
登入後複製

輸出:

<code>平方根为:4</code>
登入後複製

以上是c++中如何使用根號的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
c++
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板