目錄C語言的四種取整方式:零向取整trunc函數(C99)trunc的使用地板取整floor函數的使用向上取整ceil函數的使用四捨五入round函數(C99)round函數的使用四種取整方式演示 C語言的四種取整方式: 零向取整 如圖: 可以發現C語言a和b的取整方式都不是四捨五入,而是直接捨棄小 ...
目錄
C語言的四種取整方式:
零向取整
如圖:
可以發現C語言a和b的取整方式都不是四捨五入,而是直接捨棄小數部分.(a四捨五入是-3,b四捨五入是3.)這種方式叫做零向取整.也是c語言中的預設取整方式
從圖中可以看出無論是-2.9還是2.9,它們取整方向都是向著0的方向取整.
trunc函數(C99)
C語言<math.h>
庫中也有零向取整函數,它的返回值是浮點型,如果需要也是可以強轉成int類型使用.
trunc的使用
註意,%d不能直接接收浮點型,浮點型在記憶體空間中的佈局和整型是不一樣的,這點要註意.
如果需要轉成整型使用,需要圓括弧(int)
強制類型轉換.
地板取整
這個名字有點奇怪,它是函數floor的翻譯而來.
也叫向下取整,向左取整,向負無窮取整
floor函數的使用
向上取整
又稱向右取整,向正無窮取整, 來源於ceil函數
ceil函數的使用
四捨五入
round函數(C99)
round函數的使用
四種取整方式演示
#include<stdio.h>
#include<math.h>
int main()
{
const char * format = "%.1f \t%.1f \t%.1f \t%.1f \t%.1f\n";
printf("value\tround\tfloor\tceil\ttrunc\n");
printf("-----\t-----\t-----\t----\t-----\n");
printf(format, 2.3, round(2.3), floor(2.3), ceil(2.3), trunc(2.3));
printf(format, 3.8, round(3.8), floor(3.8), ceil(3.8), trunc(3.8));
printf(format, 5.5, round(5.5), floor(5.5), ceil(5.5), trunc(5.5));
printf(format, -2.3, round(-2.3), floor(-2.3), ceil(-2.3), trunc(-2.3));
printf(format, -3.8, round(-3.8), floor(-3.8), ceil(-3.8), trunc(-3.8));
printf(format, -5.5, round(-5.5), floor(-5.5), ceil(-5.5), trunc(-5.5));
return 0;
}
本文來自博客園,作者:HJfjfK,原文鏈接:https://www.cnblogs.com/DSCL-ing/p/18414569