当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ fesetround()用法及代码示例


C++ 中的fesetround() 函数尝试设置指定的浮点舍入方向,该方向应为浮点舍入宏之一。

fesetround() 函数在<cfenv> 头文件中定义。

fesetround()原型

int fesetround( int round );

此函数采用单个参数 round ,它是浮点舍入宏之一。然后尝试将round 设置为浮点舍入方向。

参数:

  • round:舍入方向,是浮点舍入宏之一。回合的可能值为FE_TONEAREST、FE_DOWNWARD、FE_UPWARD、FE_TOWARDZERO。

返回:

  • 成功时,fesetround() 函数返回 0。
  • 失败时,它返回非零。

示例:fesetround() 函数如何工作?

#include <iostream>
#include <cmath>
#include <cfenv>
#pragma STDC FENV_ACCESS ON
using namespace std;

void print_current_rounding_direction()
{
	cout << "Current rounding method: ";
	switch (fegetround()) {
		case FE_TONEAREST:
			cout << "FE_TONEAREST";
			break;
		case FE_DOWNWARD:
			cout << "FE_DOWNWARD";
			break;
		case FE_UPWARD:
			cout << "FE_UPWARD";
			break;
		case FE_TOWARDZERO:
			cout << "FE_TOWARDZERO";
			break;
		default:
			cout << "unknown";
	};
	cout << endl;
}

int main()
{
	print_current_rounding_direction();
	cout << "6.2 -> " << rint(6.2) << endl;
	cout << "18.7 -> " << rint(18.7) << endl;

	fesetround(FE_UPWARD);
	print_current_rounding_direction();
	cout << "6.2 -> " << rint(6.2) << endl;
	cout << "19.7 -> " << rint(19.7) << endl;
	
	fesetround(FE_DOWNWARD);
	print_current_rounding_direction();
	cout << "6.2 -> " << rint(6.2) << endl;
	cout << "19.7 -> " << rint(19.7) << endl;
	
	return 0;
}

运行程序时,输出将是:

Current rounding method: FE_TONEAREST
6.2 -> 6
18.7 -> 19
Current rounding method: FE_UPWARD
6.2 -> 7
19.7 -> 20
Current rounding method: FE_DOWNWARD
6.2 -> 6
19.7 -> 19

相关用法


注:本文由纯净天空筛选整理自 C++ fesetround()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。