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

51,772 answers

573 users

How to round a number to the next power of 2 in Go

1 Answer

0 votes
package main

import (
    "fmt"
    "math"
)

// RoundToNextPowerOf2 returns the next power of 2 greater than or equal to n.
func RoundToNextPowerOf2(n uint) uint {
    if n == 0 {
        return 1
    }
    exp := math.Ceil(math.Log2(float64(n)))
    
    return uint(math.Pow(2, exp))
}

func main() {
    num := uint(21)
    
    fmt.Printf("Next power of 2: %d\n", RoundToNextPowerOf2(num))
}



/*
run:
 
Next power of 2: 32
 
*/

 



answered Oct 29, 2025 by avibootz

Related questions

1 answer 44 views
1 answer 50 views
1 answer 82 views
1 answer 112 views
1 answer 55 views
1 answer 54 views
1 answer 50 views
...