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

51,915 answers

573 users

How to implement a power function in Java

2 Answers

0 votes
public class MyClass {
    public static long power(int x, int y) {
        long result = x;
    
        for (int i = 1; i < y; i++) {
          result = result * x;
        }
        
        return result;
    }
    public static void main(String args[]) {
        System.out.println("2 power 3 : = " + power(2, 3));
        System.out.println("3 power 3 : = " + power(3, 3));
        System.out.println("2 power 4 : = " + power(2, 4));
        System.out.println("5 power 2 : = " + power(5, 2));
    }
}

 
 
 
 
/*
run:
 
2 power 3 : = 8
3 power 3 : = 27
2 power 4 : = 16
5 power 2 : = 25
 
*/

 



answered Nov 9, 2021 by avibootz
0 votes
public class PowerCalculation {
    // Method to compute integer exponentiation
    public static double myPow(double base, int exponent) {
        double result = 1;
 
        while (exponent > 0) {
            if ((exponent & 1) == 1) {
                result *= base;
            }
            exponent >>= 1;
            base *= base;
        }
 
        return result;
    }
 
    public static void main(String[] args) {
        // Testing the function
        System.out.println(myPow(2, 3));  // 8
        System.out.println(myPow(3, 3));  // 27
        System.out.println(myPow(3, 2));  // 9
        System.out.println(myPow(2, 2));  // 4
        System.out.println(myPow(5, 2));  // 25
        System.out.println(myPow(-2, 4)); // 16
    }
}
 
 
/*
run:
 
8.0
27.0
9.0
4.0
25.0
16.0
 
*/

 



answered 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 56 views
1 answer 55 views
...