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,846 questions

51,767 answers

573 users

How to use floor() to get the largest integer that is less 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.floor(d1));
        System.out.println(Math.floor(d2));
        System.out.println(Math.floor(d3));
        System.out.println(Math.floor(d4));
        System.out.println(Math.floor(d5));
        System.out.println(Math.floor(d6));
        System.out.println(Math.floor(d7));
        System.out.println(Math.floor(f1));  
        System.out.println(Math.floor(f2));  
    }
}
 
/*
run:

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

 



answered Sep 7, 2016 by avibootz
...