返回浮点数的整数部分。
float trunc(float number)
“number”是要截断的数字。
trunc(2.344)
返回 2。
trunc(0.3)
返回 0。
trunc(-2.82)
返回 -2。
trunc(time)
如果时间等于 3.1234,则返回 3。