我遇到了关于数字的整数部分和小数部分的问题。实际上我需要的是说我有一个数字'101'。这实际上是经过一些计算和时间后得出的。我需要找到小时和分钟。所以我所做的是
overtime = 101
Dim fraction As Decimal = 0
If overtime > 59 Then
fraction = overtime / 60
'overtime = overtime / 60
fraction = fraction - CInt(fraction)
fraction = fraction * 60
Dim str() As String = Split(fraction.ToString, ".")
Try
If str(2).Length > 2 Then
End If
Catch ex As Exception
End Try
End If
但是整数正在四舍五入,所以我得到了错误的答案。