C++ 多种取整函数的使用和区别: ceil() floor() round() trunc() rint() nearbyint()

简介: C++ 多种取整函数的使用和区别: ceil() floor() round() trunc() rint() nearbyint()

取整函数:


ceil()     右向取整:数轴上右边最靠近的整数,向大的方向取值;ceil “天花板”


floor()   左向取整:数轴上左边最靠近的整数,向小的方向取值;floor “地板”


round() 接近取整:不管正负,即四舍五入后留下整数部分  round(x) = floor(x+0.5)


trunc()  零向取整:不管正负,直接舍掉小数部分只留下整数部分,向原点0的方向取值


rint() nearbyint():四种方法任选其一,由 fesetround() 配合设置,见例程二说明



例程一:ceil() floor() round() trunc()用法

#include <iostream>
#include <cmath>
using namespace std;
int main()
{
  double num[4] = {13.6, 3.23, -13.6, -3.23};
  for (auto n:num){
    cout<< "    ceil(x) floor(x) round(x) trunc(x):x = " << n << endl;
    cout<< "\t" << ceil(n) << "\t" << floor(n) << "\t"
      << round(n) << "\t" << trunc(n) << endl << endl;
  }
    return 0;
}
/*
    ceil(x) floor(x) round(x) trunc(x):x = 13.6
        14      13      14      13
    ceil(x) floor(x) round(x) trunc(x):x = 3.23
        4       3       3       3
    ceil(x) floor(x) round(x) trunc(x):x = -13.6
        -13     -14     -14     -13
    ceil(x) floor(x) round(x) trunc(x):x = -3.23
        -3      -4      -3      -3
--------------------------------
Process exited after 0.6186 seconds with return value 0
请按任意键继续. . .
*/


例程二:fegetround() fesetround()用法


   函数原型:


   int fesetround(int mode); 设置取整模式

   int fegetround(void); 获取当前取整模式


   mode 值:


   Round to nearest value   FE_TONEAREST     == 0

   Round downward            FE_DOWNWARD     == 1024

   Round upward                 FE_UPWARD           == 2048

   Round towards zero        FE_TOWARDZERO  == 3072

   default value:                FE_TONEAREST      == 0



#include <iostream>
#include <cmath>
#include <cfenv>
using namespace std;
int getround(void)
{
  switch (fegetround()) { 
  case FE_TONEAREST:
    cout << "\nRound to nearest value \t FE_TONEAREST\t== "; 
    break; //round()
  case FE_DOWNWARD:
    cout << "\nRound downward \t\t FE_DOWNWARD\t== "; 
    break; //ceil()
  case FE_UPWARD:
    cout << "\nRound upward \t\t FE_UPWARD\t== "; 
    break; //floor()
  case FE_TOWARDZERO:
    cout << "\nRound towards zero \t FE_TOWARDZERO\t== "; 
    break; //trunc()
  default: 
    cout << "unknown";
  }
  return fegetround();
}
int main(void)
{
  for(int i=0;i<4;i++){
    fesetround(i*1024);
    cout << getround();
  }
  cout << "\n\nDaufult: TONEAREST == 0" << endl; 
  return 0; 
}
/*
Round to nearest value   FE_TONEAREST   == 0
Round downward           FE_DOWNWARD    == 1024
Round upward             FE_UPWARD      == 2048
Round towards zero       FE_TOWARDZERO  == 3072
Daufult: TONEAREST == 0
--------------------------------
Process exited after 0.8902 seconds with return value 0
请按任意键继续. . .
*/



例程三:nearbyint() rint()用法

#include <iostream>
#include <array>
#include <cmath>
#include <cfenv>
using namespace std;
int main(void)
{
  array<double,4> num={13.6, 3.23, -13.6, -3.23};
  array<string,6> str={"nearbyint(x), x = \n", "\nmode = ",
            "FE_TONEAREST(default) = ",
            "FE_DOWNWARD = ",
            "FE_UPWARD = ",
            "FE_TOWARDZERO = "  };
  cout<<str.at(0);
  for (auto n:num) cout<<"\t"<<n; cout<<endl;
  for (int i=0;i<4;i++){
    fesetround(i*1024);
    cout<<str.at(1)<<str.at(i+2)<<fegetround()<<endl;
    for (auto n:num) cout<<"\t"<<nearbyint(n); cout<<endl;
  }
  return 0;
}
/*
nearbyint(x), x =
        13.6    3.23    -13.6   -3.23
mode = FE_TONEAREST(default) = 0
        14      3       -14     -3
mode = FE_DOWNWARD = 1024
        13      3       -14     -4
mode = FE_UPWARD = 2048
        14      4       -13     -3
mode = FE_TOWARDZERO = 3072
        13      3       -13     -3
--------------------------------
Process exited after 0.6 seconds with return value 0
请按任意键继续. . .
*/


目录
相关文章
|
26天前
|
存储 安全 编译器
在 C++中,引用和指针的区别
在C++中,引用和指针都是用于间接访问对象的工具,但它们有显著区别。引用是对象的别名,必须在定义时初始化且不可重新绑定;指针是一个变量,可以指向不同对象,也可为空。引用更安全,指针更灵活。
|
30天前
|
程序员 C++ 容器
在 C++中,realloc 函数返回 NULL 时,需要手动释放原来的内存吗?
在 C++ 中,当 realloc 函数返回 NULL 时,表示内存重新分配失败,但原内存块仍然有效,因此需要手动释放原来的内存,以避免内存泄漏。
|
1月前
|
存储 前端开发 C++
C++ 多线程之带返回值的线程处理函数
这篇文章介绍了在C++中使用`async`函数、`packaged_task`和`promise`三种方法来创建带返回值的线程处理函数。
46 6
|
1月前
|
C语言 C++
C 语言的关键字 static 和 C++ 的关键字 static 有什么区别
在C语言中,`static`关键字主要用于变量声明,使得该变量的作用域被限制在其被声明的函数内部,且在整个程序运行期间保留其值。而在C++中,除了继承了C的特性外,`static`还可以用于类成员,使该成员被所有类实例共享,同时在类外进行初始化。这使得C++中的`static`具有更广泛的应用场景,不仅限于控制变量的作用域和生存期。
53 10
|
1月前
|
C++
C++ 多线程之线程管理函数
这篇文章介绍了C++中多线程编程的几个关键函数,包括获取线程ID的`get_id()`,延时函数`sleep_for()`,线程让步函数`yield()`,以及阻塞线程直到指定时间的`sleep_until()`。
25 0
C++ 多线程之线程管理函数
|
1月前
|
编译器 C语言 C++
C++入门3——类与对象2-2(类的6个默认成员函数)
C++入门3——类与对象2-2(类的6个默认成员函数)
23 3
|
1月前
|
编译器 C语言 C++
详解C/C++动态内存函数(malloc、free、calloc、realloc)
详解C/C++动态内存函数(malloc、free、calloc、realloc)
169 1
|
1月前
|
存储 编译器 C++
C++入门3——类与对象2-1(类的6个默认成员函数)
C++入门3——类与对象2-1(类的6个默认成员函数)
31 1
|
1月前
|
编译器 C语言 C++
C++入门6——模板(泛型编程、函数模板、类模板)
C++入门6——模板(泛型编程、函数模板、类模板)
41 0
C++入门6——模板(泛型编程、函数模板、类模板)
|
2月前
|
编译器 C++
【C++核心】函数的应用和提高详解
这篇文章详细讲解了C++函数的定义、调用、值传递、常见样式、声明、分文件编写以及函数提高的内容,包括函数默认参数、占位参数、重载等高级用法。
23 3