Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,845 questions

51,766 answers

573 users

How to use ceil() to get the smallest integer that is greater than or equal to the argument in Java

1 Answer

0 votes
package javaapplication1;

public class JavaApplication1 {
 
    public static void main(String[] args) {
        
        double d1 = -3.678;
        double d2 = -3.578;
        double d3 = -3.478;
        double d4 = -3.998;
        double d5 = 3.998;
        double d6 = 3.567;
        double d7 = 3.234;
        float f1 = -120;    
        float f2 = 31;    

        System.out.println(Math.ceil(d1));
        System.out.println(Math.ceil(d2));
        System.out.println(Math.ceil(d3));
        System.out.println(Math.ceil(d4));
        System.out.println(Math.ceil(d5));
        System.out.println(Math.ceil(d6));
        System.out.println(Math.ceil(d7));
        System.out.println(Math.ceil(f1));  
        System.out.println(Math.ceil(f2));  
    }
}
 
/*
run:

-3.0
-3.0
-3.0
-3.0
4.0
4.0
4.0
-120.0
31.0
 
*/

 



answered Sep 7, 2016 by avibootz
...