mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-09 12:11:28 +08:00
Formatted with Google Java Formatter
This commit is contained in:
@ -23,6 +23,7 @@ public class BinaryPow {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Function for testing binary exponentiation
|
* Function for testing binary exponentiation
|
||||||
|
*
|
||||||
* @param a the base
|
* @param a the base
|
||||||
* @param p the exponent
|
* @param p the exponent
|
||||||
*/
|
*/
|
||||||
@ -32,7 +33,8 @@ public class BinaryPow {
|
|||||||
System.out.println(a + "^" + p + ": " + res);
|
System.out.println(a + "^" + p + ": " + res);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Main Function to call tests
|
/**
|
||||||
|
* Main Function to call tests
|
||||||
*
|
*
|
||||||
* @param args System Line Arguments
|
* @param args System Line Arguments
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user