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 implement the power function in C++

1 Answer

0 votes
#include <iostream>

// Function to calculate integer power
double myPow(double base, int exp) {
    double power = 1;

    while (true) {
        if (exp & 1)
            power *= base;
        exp >>= 1;
        if (!exp)
            break;
        base *= base;
    }

    return power;
}

int main() {
    std::cout << myPow(2, 3) << std::endl;  // 8
    std::cout << myPow(3, 3) << std::endl;  // 27
    std::cout << myPow(3, 2) << std::endl;  // 9
    std::cout << myPow(2, 2) << std::endl;  // 4
    std::cout << myPow(5.0, 3) << std::endl; // 125
    std::cout << myPow(-2, 4) << std::endl; // 16
}



/*
run:

8
27
9
4
125
16

*/

 



answered Jun 10, 2025 by avibootz

Related questions

1 answer 57 views
57 views asked Jun 10, 2025 by avibootz
1 answer 209 views
1 answer 66 views
1 answer 61 views
1 answer 62 views
1 answer 75 views
...