/README

http://github.com/pads/FuzzBizz · #! · 22 lines · 18 code · 4 blank · 0 comment · 0 complexity · 63d4c6a16ad9b5e14a6b72f4f1c8161a MD5 · raw file

  1. Task
  2. ----
  3. Write a program that prints the numbers from 1 to 100.
  4. But for multiples of three print 'Fuzz' instead of the number and for the multiples of five print 'Bizz'.
  5. For numbers which are multiples of both three and five print 'FuzzBizz'.
  6. Prerequisites
  7. ------------
  8. Java
  9. Gradle
  10. Help
  11. ----
  12. To run the tests:
  13. $ gradle clean test
  14. To create an executable jar:
  15. $ gradle clean jar
  16. The jar will appear in build/libs
  17. To run the jar:
  18. $ java -jar FuzzBizzProgram.jar