c++ 中使用 sqrt() 函数求平方根,语法为:double y = sqrt(x);其中 x 为非负数,y 为计算出的平方根值。示例:求 16 的平方根:#include ,double number = 16,double squareroot = sqrt(number),cout
如何在 C++ 中使用根号
在 C++ 中,可以使用 sqrt()
函数来求一个数的平方根。该函数属于 math
库,需要在程序中包含该头文件:
<code class="cpp">#include <cmath></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 </cmath></code>
登录后复制
输出:
<code>平方根为:4</code>
登录后复制
以上就是c++++中如何使用根号的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:叮当,转转请注明出处:https://www.dingdanghao.com/article/431690.html