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

51,876 answers

573 users

How to round a number to the previous power of 2 in Java

2 Answers

0 votes
public class PowerOfTwo {

    /**
     * Rounds an integer down to the previous power of 2.
     *
     * return the previous power of 2 less than or equal to n
     */
    public static int roundToPreviousPowerOf2(int n) {
        if (n <= 0) {
            return 0;
        }
        
        return (int) Math.pow(2, Math.floor(Math.log(n) / Math.log(2)));
    }

    public static void main(String[] args) {
        int num = 31;
        
        System.out.println("Previous power of 2: " + roundToPreviousPowerOf2(num));
    }
}



/*
run:

Previous power of 2: 16

*/

 



answered Oct 29, 2025 by avibootz
0 votes
public class PowerOfTwo {
    public static int roundToPreviousPowerOf2(int n) {
        if (n <= 0) return 0;
        
        return 1 << (31 - Integer.numberOfLeadingZeros(n));
    }

    public static void main(String[] args) {
        int num = 21;
        
        System.out.println("Previous power of 2: " + roundToPreviousPowerOf2(num));
    }
}



/*
run:

Previous power of 2: 16

*/

 



answered Oct 30, 2025 by avibootz

Related questions

1 answer 42 views
1 answer 45 views
2 answers 118 views
1 answer 58 views
1 answer 49 views
1 answer 49 views
...