在 C 中求絕對值有三種方法:使用 abs() 函數,可計算任何型別數字的絕對值。使用 std::abs() 函數,可計算整數、浮點數和複數的絕對值。手動計算絕對值,適用於簡單的整數。
如何在C 中求絕對值
在C 中取得絕對值有以下方法:
1. 使用abs() 函數
abs() 函數用於計算任何類型數字的絕對值。它定義在
<code class="cpp">#include <cstdlib> int main() { int num = -10; double num2 = -3.14; std::cout << "绝对值:" << abs(num) << std::endl; // 输出:10 std::cout << "绝对值:" << abs(num2) << std::endl; // 输出:3.14 }</code>
2. 使用std::abs() 函數
#std::abs() 函數是C 標準函式庫中的一個重載版本,用於計算整數、浮點數和複數的絕對值。與 abs() 函數類似,它也定義在
<code class="cpp">#include <cstdlib> int main() { int num = -10; double num2 = -3.14; std::complex<double> num3(-2, 3); std::cout << "绝对值:" << std::abs(num) << std::endl; // 输出:10 std::cout << "绝对值:" << std::abs(num2) << std::endl; // 输出:3.14 std::cout << "绝对值:" << std::abs(num3) << std::endl; // 输出:3.60555 }</code>
3. 手動計算絕對值
對於簡單的整數,可以透過使用條件運算子手寫絕對值:
<code class="cpp">int my_abs(int num) { return (num >= 0) ? num : -num; }</code>
以上是c++中絕對值怎麼打的詳細內容。更多資訊請關注PHP中文網其他相關文章!