13. What will be the output of the following code ?
double b = -25.6;
double a = Math.rint(Math.abs(b));
System.out.println("a=" +a);
Answers
Answered by
8
Answer:
a=26.0
Explanation:
Similar questions