MathRealFloor
native MathRealFloor takes [[[real|real.html]]] r returns [[[real|real.html]]]
Округляет аргумент до ближайшего меньшего целого.
function [[[main|main.html]]] takes [[[nothing|nothing.html]]] returns [[[nothing|nothing.html]]]
call ConsolePrint([[[R2S|r2s.html]]](MathRealFloor(3.1))) // 3.0
call ConsolePrint([[[R2S|r2s.html]]](MathRealFloor(3.9))) // 3.0
call ConsolePrint([[[R2S|r2s.html]]](MathRealFloor(-3.1))) // -4.0
call ConsolePrint([[[R2S|r2s.html]]](MathRealFloor(-3.9))) // -4.0
endfunction
Last modified: 22 October 2024