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

51,823 answers

573 users

How to calculate power (base raised to the power exponent) in Java

1 Answer

0 votes
package javaapplication1;

public class JavaApplication1 {
 
    public static void main(String[] args) {
        
        double d1 = 3.14;
        double d2 = 1.35;

        // double pow(double base, double exponent)
        System.out.printf("pow(%.3f, %.3f) = %.3f%n", d1, d2, Math.pow(d1, d2));
        
        double d3 = 2;
        double d4 = 3;
        
        // double pow(double base, double exponent)
        System.out.printf("pow(%.3f, %.3f) = %.3f%n", d3, d4, Math.pow(d3, d4));

    }
}
 
/*
run:

pow(3.140, 1.350) = 4.687
pow(2.000, 3.000) = 8.000
 
*/

 



answered Sep 8, 2016 by avibootz
...