/README
#! | 22 lines | 18 code | 4 blank | 0 comment | 0 complexity | 63d4c6a16ad9b5e14a6b72f4f1c8161a MD5 | raw file
1Task 2---- 3Write a program that prints the numbers from 1 to 100. 4But for multiples of three print 'Fuzz' instead of the number and for the multiples of five print 'Bizz'. 5For numbers which are multiples of both three and five print 'FuzzBizz'. 6 7Prerequisites 8------------ 9Java 10Gradle 11 12Help 13---- 14To run the tests: 15$ gradle clean test 16 17To create an executable jar: 18$ gradle clean jar 19The jar will appear in build/libs 20 21To run the jar: 22$ java -jar FuzzBizzProgram.jar