Created
May 15, 2020 02:21
-
-
Save akey7/1e30c2560498b4427d3a17c02a190c69 to your computer and use it in GitHub Desktop.
Fizz Buzz in R
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
for (i in 1:20) { | |
if (i %% 3 == 0) print("Fizz") | |
else if (i %% 5 == 0) print("Buzz") | |
else print(i) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment