该函数返回具有 x 大小和 y 符号的值。
用法
考虑两个数字 'x' 和 'y'。语法是:
float copysign(float x, float y);
double copysign(double x, double y);
long double copysign(long double x, long double y);
promoted copysign(type1 x, type2 y);
注意:如果任何参数是 long double 类型,则返回类型将提升为 long double。如果不是,则返回类型被提升为 double。
参数
x: 值与大小。
y: 带符号的值。
返回值
它返回具有 x 大小和 y 符号的值。
例子1
让我们看一个简单的例子,当 y 的值为正时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double x=15.9;
double y=9;
std::cout << "Values of x and y are:" <<x<<", "<<y<< std::endl;
cout<<"copysign(15.9,9) ="<<copysign(x,y);
return 0;
}
输出:
Values of x and y are:15.9, 9 copysign(15.9,9) =15.9
在此示例中,copysign() 返回 x 的大小,即 15.9,y 的符号为负。
例子2
让我们看一个简单的例子,当 y 的值为负时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double x=-8.6;
double y=-3.2;
std::cout << "Values of x and y are:" <<x<<" ,"<<y<< std::endl;
cout<<"copysign(-8.6,-3.2) ="<<copysign(x,y);
return 0;
}
输出:
Values of x and y are:-8.6 ,-3.2 copysign(-8.6,-3.2) =-8.6
在此示例中,copysign() 返回 x 的大小,即 8.6,y 的符号为负。
相关用法
- C++ Math cosh()用法及代码示例
- C++ Math cos()用法及代码示例
- C++ Math ceil()用法及代码示例
- C++ Math cbrt()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math sinh()用法及代码示例
- C++ Math scalbln()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math copysign()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。