LoopFun.java 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. public class LoopFun
  2. {
  3. /**
  4. * Given a number, return the factorial of that number.
  5. * For example, given 5, the factorial is 5 x 4 x 3 x 2 x 1 which should return 120.
  6. * @param number
  7. * @return the factorial of the number
  8. */
  9. public int factorial(int number){
  10. int factorial = 1;
  11. int num = 6;
  12. for(int i = 1; i <= number; i++)
  13. {
  14. factorial *= i;
  15. }
  16. return factorial;
  17. }
  18. /**
  19. * Given a phrase, get the acronym of that phrase. Acronym is the combination of
  20. * the first character of each word in upper case.
  21. * For example, given "Ruby on Rails", this method will return "ROR"
  22. * @param phrase
  23. * @return Upper case string of the first letter of each word
  24. */
  25. public String acronym(String phrase) {
  26. String initials = "";
  27. for (String s : phrase.split(" ")) {
  28. initials += s.charAt(0);
  29. }
  30. return initials;
  31. }
  32. /**
  33. * To prevent anyone from reading our messages, we can encrypt it so it will only be readable by its
  34. * intended audience. This method encrypt the message by shifting the letter by 3 characters. If the character is
  35. * at the end of the alphabet, it will wraps around.
  36. * For example:
  37. * 'a' => 'd'
  38. * 'w' => 'z'
  39. * 'x' => 'a'
  40. * 'y' => 'b'
  41. * @param word
  42. * @return the encrypted string by shifting each character by three character
  43. */
  44. public String encrypt(String word) {
  45. return null;
  46. }
  47. }