Answers for "round double to int c"

C
1

rounding decimal number in C

#include <stdio.h>
#include <math.h>
 int main()
{
       float i=5.4, j=5.6;
       printf("round of  %f is  %fn", i, round(i));
       printf("round of  %f is  %fn", j, round(j));
       return 0;
}
Posted by: Guest on July-30-2021
0

how to round Double to 2 digit decimals

import java.math.BigDecimal
import java.math.RoundingMode
val decimal = BigDecimal(3.14159265359).setScale(2, RoundingMode.HALF_EVEN)
println(decimal) // 3.14
Posted by: Guest on October-13-2021

Code answers related to "C"

Browse Popular Code Answers by Language