MathIntegerSign
native MathIntegerSign takes [[[integer|integer.html]]] i returns [[[integer|integer.html]]]
Функция возвращает знак числа, указывающий на то, является ли число отрицательным, положительным или нулём.
Возвращает 1
если число положительное, -1
если отрицательное и ноль в случае нуля.
function [[[main|main.html]]] takes [[[nothing|nothing.html]]] returns [[[nothing|nothing.html]]]
call ConsolePrint([[[I2S|i2s.html]]](MathIntegerSign(-3))) // -1
call ConsolePrint([[[I2S|i2s.html]]](MathIntegerSign(0))) // 0
call ConsolePrint([[[I2S|i2s.html]]](MathIntegerSign(3))) // 1
endfunction
Last modified: 22 October 2024