Int, Fix Functions
Returns the integer portion of a number.
Syntax
Int(number)
Fix(number)
The required number argument is a Double or any valid numeric expression. If number contains Null, Null is returned.
Remarks
Both Int and Fix remove the fractional part of number and return the resulting integer value.
The difference between Int and Fix is that if number is negative, Int returns the first negative integer less than or equal to number, whereas Fix returns the first negative integer greater than or equal to number. For example, Int converts -8.4 to -9, and Fix converts -8.4 to -8.
Fix(number) is equivalent to:
Sgn(number) * Int(Abs(number))
Nicky писал(а):Может кто объяснить subj?
MsgBox Fix(Round(0.3 * 1000))
Nicky писал(а):Все равно, странно все это...
? (0.3 * 1000)
300
? Fix(0.3 * 1000)
299
? CDbl(0.3 * 1000)
300
? Fix(CDbl(0.3 * 1000))
300
Andrey Fedorov писал(а):Может пояснишь что странно, а то я так и не въеду
Nicky писал(а):Получается, что на утверждение 0.3 * 10 = 3 полагаться нельзя?
Nicky писал(а):Получается, что на утверждение 0.3 * 10 = 3 полагаться нельзя?
Private Sub Form_Load()
MsgBox Fix(0.3 * 1000)
End Sub
AjaxVS писал(а):Я хотел бы прочесть ответ на вопрос - возможно ли предугадать, какое число появится в следующий раз в качестве ответа? И нормально ли, что с виду обычная функция VB напоминает Rnd? +_+
Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 163