This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1) Write a loop that prints out 1 - 50 | |
// 2) Now I want the same output but without a loop | |
// 3) Now if current number if a multiple of 3, print 'Fizz' instead of the number | |
// If it is a multiple of 5 print 'Buzz' instead of the number | |
// If it is a multiple of 3 and 5, print 'FizzBuzz' instead of the number | |
**All variable names and location of their definitions matter |