123456789101112131415161718192021 |
-
- /**
- * Write a description of class CustomFeatures here.
- *
- * @author (your name)
- * @version (a version number or a date)
- */
- public class CustomFeatures
- {
- public double cubeRoot(double x)
- {
- return Math.pow(x,1.0/3.0);
- }
-
- public double root(double x)
- {
- double y = Console.getDoubleInput();
- return Math.pow(x,1.0/y);
- }
- }
|