Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. public class CaffeineBuzz {
  2. public static String caffeineBuzz(int n){
  3. String outp="";
  4. if(n%4!=0)
  5. {
  6. if(n%3==0)
  7. {
  8. outp = "Java";
  9. if(n%2==0)
  10. outp += "Script";
  11. else
  12. outp = "Java";
  13. }
  14. else
  15. outp = "mocha_missing!";
  16. }
  17. else
  18. {
  19. if(n%3==0)
  20. {
  21. outp = "Coffee";
  22. if(n%2==0)
  23. outp += "Script";
  24. else
  25. outp = "Coffee";
  26. }
  27. else
  28. outp = "mocha_missing!";
  29. }
  30. return outp;
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement