-
Notifications
You must be signed in to change notification settings - Fork 307
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Entry Challenge C2 #2
Comments
for i in range(1, 101): |
//javascriprt// const final=[]; |
STOP WRITING YOUR SOLUTIONS IN THE ISSUES KINDLY.Create a Fork; Work on the challenge; Then create a PR (Pull Request) with your solution(s).
Thank you. cc: @Jeremiah-o , @Angote433 , @daviewisdm |
for (let i = 1; i <= 100; i++) { |
Entry Challenge C2
FizzBuzz
Write a program that prints the numbers from 1 to 100. For multiples of 3, print
Fizz
; formultiples of 5, print
Buzz
; and for numbers that are multiples of both 3 and 5, printFizzBuzz
.The text was updated successfully, but these errors were encountered: