123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import java.util.*;
-
- import java.text.DecimalFormat;
-
- public class MathUtilities{
- /**
- * Add two number together
- * @param num1 first number
- * @param num2 second number
- * @return the sum of the two numbers
- */
- public int add(int num1, int num2){
- int solution = num1 + num2;
- return solution;
- }
-
- /**
- * Add two number together
- * @param num1 first number
- * @param num2 second number
- * @return the sum of the two numbers
- */
- public double add(double num1, double num2){
- double solution = num1 + num2;
- return solution;
- }
-
- /**
- * Get half the value of the number
- * @param number the number given
- * @return the half of the number in double
- */
- public double half(int number) {
- double ohokay = number / 2;
- DecimalFormat solution = new DecimalFormat(".#");
- String theone = solution.format(ohokay);
- double answer = (double) ohokay;
- return answer;
- }
-
- /**
- * Determine if the number is odd
- * @param number the number given
- * @return true if the number is odd, false if it is even
- */
- public boolean isOdd(int number){
- if ((number % 2) != 0) {
- return true;} else { return false;}
- }
-
-
- /**
- * Multiply the number by itself
- * @param number the number given
- * @return the result of the number multiply by itself
- */
- public int square(int number) {
- int solution = number * number;
- return solution;
- }
-
- }
|