Floor Function Demo RAPTOR Flowchart
Introduction The floor function is a built-in RAPTOR function that rounds down the parameter to a whole number. For example, floor(7.65) = 7 floor() function is used to get quotient in mathematical calculations. Example: 102/10 = 10.2 To get quotient we can use the floor() function. quotient = floor(102/10) = 10 To get remainder we […]