在C 中列印根號:1. 包含頭檔<cmath>;2. 宣告double 類型變數number;3. 輸入數字到number 中;4.計算平方根並儲存在squareRoot 中;5 . 列印"平方根為:" squareRoot。
在 C 中列印根號
如何列印根號?
在 C 中,可以使用 sqrt()
函數計算平方根,並將結果印到控制台上。根號符號本身無法直接列印。
詳細說明:
<cmath>
宣告變數:
<code class="cpp">double number;</code>
#讀取使用者輸入:
<code class="cpp">cout << "输入一个数字:"; cin >> number;</code>
計算平方根:
<code class="cpp">double squareRoot = sqrt(number);</code>
列印平方根:
<code class="cpp">cout << "平方根为:" << squareRoot << endl;</code>
範例程式碼:
<code class="cpp">#include <cmath> #include <iostream> using namespace std; int main() { double number; cout << "输入一个数字:"; cin >> number; double squareRoot = sqrt(number); cout << "平方根为:" << squareRoot << endl; return 0; }</code>
執行範例:
<code>输入一个数字:9 平方根为:3</code>
以上是c++中的根號怎麼打的詳細內容。更多資訊請關注PHP中文網其他相關文章!