How can I use the math round function same as excel round function
float round( float arg );
round( number, num_digits )
If num_digits is greater than 0, then number is rounded to the specified number of decimal places.
If num_digits is 0, the number is rounded to the nearest integer.
If num_digits is less than 0, the number is rounded to the left of the decimal point.