标签: bash rounding
我需要一个将浮点数四舍五入到最接近的大整数的函数:
# input -> output 14.72 -> 15 14.01 -> 15 14.00 -> 14
如何执行此操作?