Answers for "how to apply math.ceil in java"

2

java math ceil

Math.ceil(125.9)=126.0
Math.ceil(0.4873)=1.0
Math.ceil(-0.65)=-0.0
Posted by: Guest on July-28-2021
0

java math.ceil example

import java.lang.*;

public class Math {

   public static void main(String[] args) {

      // get two double numbers
      double x = 125.9;
      double y = 0.4873;
   
      // call ceal for these these numbers
      System.out.println("Math.ceil(" + x + ")=" + Math.ceil(x));
      System.out.println("Math.ceil(" + y + ")=" + Math.ceil(y));
      System.out.println("Math.ceil(-0.65)=" + Math.ceil(-0.65));
   }
}
Posted by: Guest on June-20-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language