赞
踩
目录
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C 语言基础入门
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C++ 面向对象
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C++ 设计模式
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C++ STL
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C/C++ 技术杂谈
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C/C++ 常用函数
在 C 语言中 round 函数用于对浮点数 float
或者 double
或者 longdouble
四舍五入,也是一个比较常用的函数 ,语法如下:
#include <math.h> //需要包含头文件
extern float roundf(float);//参数为flot类型
extern double round(double);//参数为double类型
extern long double roundl(long double);//参数为long double类型
注意:round函数的返回是
double类型,并非
int` 类型;
round
函数主要用于对浮点数四舍五入,示例如下:
/******************************************************************************************/ //@Author:猿说编程 //@Blog(个人博客地址): www.codersrc.com //@File:C/C++ round 函数 //@Time:2021/08/24 08:00 //@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累! /******************************************************************************************/ #include "stdafx.h" #include "stdio.h" #include "stdlib.h" #include "windows.h" #include <math.h> int main() { printf("round(50.2) = %f \n", round(50.2)); printf("round(50.8) = %f \n", round(50.8)); printf("round(0.2) = %f \n", round(0.2)); printf("round(-50.2) = %f \n", round(-50.2)); printf("round(-50.8) = %f \n", round(-50.8)); printf("round(100.2) = %f \n", round(100.2)); system("pause"); return 0; } /* 输出: round(50.2) = 50.000000 round(50.8) = 51.000000 round(0.2) = 0.000000 round(-50.2) = -50.000000 round(-50.8) = -51.000000 round(100.2) = 100.000000 Press any key to continue . . . */
未经允许不得转载:猿说编程 » C/C++ round 函数
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。