round(x);
Round a number to the nearest integer
Arguments
x
The value to roundReturns
int
The rounded valuefloor(x);
floor is a function that takes in a number, and returns the greatest integer less or equal to x
see here
Arguments
x
The value to floorReturns
int
greatest integer less than or equals to xceil(x);
ceil is a function that takes in a number, and returns the smallest integer greater or equal to x
see here
Arguments
x
The value to floorReturns
int
The floored valuesin(x);
Sine function (Trigonometry)
Arguments
x
The input valueReturns
number
The output valuecos(x);
Cosine function (Trigonometry)
Arguments
x
The input valueReturns
number
The output valuetan(x);
Tangent function (Trigonometry)
Arguments
x
The input valueReturns
number
The output value