MathUtilities.java 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 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 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. return (double)number/2 ;
  27. }
  28. /**
  29. * Determine if the number is odd
  30. * @param number the number given
  31. * @return true if the number is odd, false if it is even
  32. */
  33. public boolean isOdd(int number){
  34. boolean odd;
  35. if(number%2 == 1){
  36. odd = true;
  37. }
  38. else{
  39. odd = false;
  40. }
  41. return odd;
  42. }
  43. /**
  44. * Multiply the number by itself
  45. * @param number the number given
  46. * @return the result of the number multiply by itself
  47. */
  48. public int square(int number) {
  49. return number*number;
  50. }
  51. }