mirror of
https://github.com/TheAlgorithms/Java.git
synced 2026-02-04 12:31:31 +08:00
* add LucasSeries
* add PerfectCube * PerfectSquare
This commit is contained in:
27
Maths/PerfectCube.java
Normal file
27
Maths/PerfectCube.java
Normal file
@@ -0,0 +1,27 @@
|
||||
package Maths;
|
||||
|
||||
/**
|
||||
* https://en.wikipedia.org/wiki/Cube_(algebra)
|
||||
*/
|
||||
public class PerfectCube {
|
||||
public static void main(String[] args) {
|
||||
assert !isPerfectCube(-1);
|
||||
assert isPerfectCube(0);
|
||||
assert isPerfectCube(1);
|
||||
assert !isPerfectCube(4);
|
||||
assert isPerfectCube(8);
|
||||
assert isPerfectCube(27);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a number is perfect cube or not
|
||||
*
|
||||
* @param number number to check
|
||||
* @return {@code true} if {@code number} is perfect cube, otherwise {@code false}
|
||||
*/
|
||||
public static boolean isPerfectCube(int number) {
|
||||
int a = (int) Math.pow(number, 1.0 / 3);
|
||||
return a * a * a == number;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user