123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
-
- /**
- * Method for the RealAdvanced class
- *
- * @Michelle DiMarino
- * @10.21.18
- */
-
- import java.util.*;
-
- public class RealAdvanced
- {
-
- public void realAdvanced()
- {
- Console.println("Please Select one of the following Calculations: " +"\n"+
- "1: x^2" + "\n"+
- "2: x^y" + "\n"+
- "3: 1/x" + "\n"+
- "4: Switch Sign of x" + "\n"+
- "5: Return to Main Menu");
-
- }
- // method to find x^2
- public double squared(double x){
-
- return Math.pow(x,2);
- }
- // method to find x^y
- public double exponent(double x, double y){
-
- return Math.pow(x,y);
- }
- // method to find the inverse of x
- public double inverse(double x){
-
- return 1/x;
- }
- // method to switch sign of x
- public double opposite(double x){
-
- double opposite1 = -1 * x;
-
- return opposite1;
- }
-
- }
|