MathUtilities.java 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. public class MathUtilities{
  2. /**
  3. * Add two number together
  4. * @param num1 first number
  5. * @param num2 second number
  6. * @return the sum of the two numbers
  7. */
  8. public int add(int num1, int num2){
  9. return (int) (num1 + num2);
  10. }
  11. /**
  12. * Add two number together
  13. * @param num1 first number
  14. * @param num2 second number
  15. * @return the sum of the two numbers
  16. */
  17. public double add(double num1, double num2){
  18. return (double) (num1 + num2);
  19. }
  20. /**
  21. * Get half the value of the number
  22. * @param number the number given
  23. * @return the half of the number in double
  24. */
  25. public double half(int number) {
  26. int a = number / 2;
  27. double d = a;
  28. return d ;
  29. }
  30. /**
  31. * Determine if the number is odd
  32. * @param number the number given
  33. * @return true if the number is odd, false if it is even
  34. */
  35. public boolean isOdd(int number){
  36. return false;
  37. }
  38. /**
  39. * Multiply the number by itself
  40. * @param number the number given
  41. * @return the result of the number multiply by itself
  42. */
  43. public int square(int number) {
  44. return -1;
  45. }
  46. }