Floatdiv

From SA-MP Wiki

Jump to: navigation, search

floatdiv

Image:Farm-Fresh text lowercase.png Note: This function name starts with a lowercase letter.


Description:

Divide one float by another one. Redundant as the division operator (/) does the same thing.


Parameters:
(Float:dividend, Float:divisor)
Float:dividendFirst float.
Float:divisorSecond float (dividates the first float.)


Return Values:

The quotient of the two given floats.


Example Usage:

public OnGameModeInit()
{
    new Float:Number1 = 8.05, Float:Number2 = 3.5; //Declares two floats, Number1 (8.05) and Number2 (3.5)
    new Float:Quotient;
    Quotient = floatdiv(Number1, Number2);       //Saves the quotient(=8.05/3.5 = 2.3) of Number1 and Number2 in the float "Quotient"
    return 1;
}

Related Functions

The following functions may be useful, as they are related to this function in one way or another.

  • floatsub: Subtract a float from another float.
Personal tools
Navigation
Toolbox