Power.java Source code

Java tutorial

Introduction

Here is the source code for Power.java

Source

public class Power {

    public static void main(String[] args) {
        System.out.println(Math.pow(2, 2));
    }
}