博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hypot函数_hypot()函数与C ++中的示例
阅读量:2540 次
发布时间:2019-05-11

本文共 1305 字,大约阅读时间需要 4 分钟。

hypot函数

C ++ hypot()函数 (C++ hypot() function)

hypot() function is a library function of cmath header, it is used to find the hypotenuse of the given numbers, it accepts two numbers and returns the calculated result of hypotenuse i.e. sqrt(x*x + y*y).

hypot()函数cmath标头的库函数,用于查找给定数字的斜边,接受两个数字并返回斜边的计算结果,即sqrt(x * x + y * y) 。

Syntax of hypot() function:

hypot()函数的语法:

hypot(x, y);

Parameter(s): x, y – numbers to be calculated hypotenuse (or sqrt(x*x + y*y))

参数: x,y –要计算的斜边数(或sqrt(x * x + y * y) )

Return value: double – it returns double value that is the result of the expression sqrt(x*x + y*y).

返回值: double-它返回double值,该值是表达式sqrt(x * x + y * y)的结果 。

Example:

例:

Input:    float x = 10.23;    float y = 2.3;    Function call:    hypot(x, y);    Output:    10.4854

C ++代码演示hypot()函数的示例 (C++ code to demonstrate the example of hypot() function)

// C++ code to demonstrate the example of // hypot() function#include 
#include
using namespace std;// main code sectionint main(){
float x = 10.23; float y = 2.3; // calculate the hypotenuse float result = hypot(x, y); cout<<"hypotenuse of "<
<<" and "<
<<" is = "<

Output

输出量

hypotenuse of 10.23 and 2.3 is = 10.4854hypotenuse of 10.23 and 2.3 is = 10.4854

翻译自:

hypot函数

转载地址:http://ouxzd.baihongyu.com/

你可能感兴趣的文章
软件工程第二次作业—结对编程
查看>>
【字符编码】Java字符编码详细解答及问题探讨
查看>>
学习操作系统导图
查看>>
在线的JSON formate工具
查看>>
winform非常实用的程序退出方法!!!!!(转自博客园)
查看>>
xml解析
查看>>
centos安装vim
查看>>
linux工作调度(计划任务)
查看>>
HTTP协议形象展现
查看>>
hdu--1698 Just a Hook(线段树+区间更新+懒惰标记)
查看>>
Django 框架的 模板继承 与 模板包含
查看>>
Effective Modern C++:01类型推导
查看>>
根据html页面模板动态生成html页面(c#类)
查看>>
Failed to Connect to MySQL at 127.0.0.1:3306 MySql WorkBench 本地连接问题
查看>>
android下activity中多个listview只允许主界面滚动
查看>>
(贪心5.2.1)UVA 10026 Shoemaker's Problem(利用数据有序化来进行贪心选择)
查看>>
java基础练习 4
查看>>
Swift学习:扩展(Extensions)
查看>>
java了解
查看>>
[基础] 模板+友元类外定义
查看>>