Find The Power Of Number - Java
 |
Java Programming
|
Introducing Power of Number
Power of number is a process a number with a power. Example 2 to the power of 4 is 2 * 2 * 2 * 2 = 16. So, 2 to the power of 4 equals 16.
Main Method
This main method is for executing pon method for process a number with a power. In this source code is execute 4 to the power of 3. 4 to the power of 3 is : 4 * 4 * 4 = 64.