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 C#

1 Answer

0 votes
using System;

class PowerCalculation
{
    // Method to compute integer exponentiation
    static double MyPow(double baseValue, int exponent) {
        double result = 1;

        while (exponent > 0) {
            if ((exponent & 1) == 1) {
                result *= baseValue;
            }
            exponent >>= 1;
            baseValue *= baseValue;
        }

        return result;
    }

    static void Main()
    {
        Console.WriteLine(MyPow(2, 3));  // 8
        Console.WriteLine(MyPow(3, 3));  // 27
        Console.WriteLine(MyPow(3, 2));  // 9
        Console.WriteLine(MyPow(2, 2));  // 4
        Console.WriteLine(MyPow(5.0, 2));  // 25
        Console.WriteLine(MyPow(-2, 4)); // 16
    }
}



/*
run:

8
27
9
4
25
16

*/

 



answered Jun 11, 2025 by avibootz
edited Jun 11, 2025 by avibootz

Related questions

1 answer 66 views
1 answer 63 views
1 answer 62 views
1 answer 77 views
1 answer 57 views
1 answer 55 views
1 answer 59 views
...