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

51,913 answers

573 users

How to implement a method to calculate the power of an Integer in Java

1 Answer

0 votes
public class MyClass {
     static int calculatePower(int n, int power) {
        int result = 1;
        if (n > 0 && power == 0) {
            return result;
        }
        else if (n == 0 && power >= 1) {
            return 0;
        }
        else {
            for (int i = 1; i <= power; i++) {
                result = result * n;
            }
            return result;
        }
    }
    public static void main(String args[]) {
        int n = 2;
        int power = 4;

        System.out.println(calculatePower(n, power));
    }
}




/*
run:

16

*/

 



answered Jan 4, 2022 by avibootz

Related questions

1 answer 212 views
2 answers 147 views
1 answer 145 views
...