Sorry for the inexperience, I\'m a beginning coder in R For example: If I were to make a FOR loop by chance and I have a collection of integers 1 to 100 (1:100), what would
for (x in 1:100) { if (x%%5 == 0) { print(x) } }