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

51,917 answers

573 users

How to implement the power function in Go

1 Answer

0 votes
package main

import (
    "fmt"
)

func myPow(base float64, exponent int) float64 {
    result := 1.0

    for exponent > 0 {
        if exponent&1 == 1 {
            result *= base
        }
        exponent >>= 1
        base *= base
    }

    return result
}

func main() {
    fmt.Println(myPow(2, 3))  // 8
    fmt.Println(myPow(3, 3))  // 27
    fmt.Println(myPow(3, 2))  // 9
    fmt.Println(myPow(2, 2))  // 4
    fmt.Println(myPow(5.0, 2))  // 25
    fmt.Println(myPow(-2, 4)) // 16
}



/*
run:

8
27
9
4
25
16

*/

 



answered Jun 11, 2025 by avibootz
...