Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <cfscript>
  2. for(i = 1; i <= 100; i++) {
  3. if(i % 15 == 0){
  4. writeOutput("FizzBuzz");
  5. } else if(i % 3 == 0){
  6. writeOutput("Fizz");
  7. } else if(i % 5 == 0){
  8. writeOutput("Buzz");
  9. } else {
  10. writeOutput(i);
  11. }
  12. writeOutput("<br />");
  13. }
  14. </cfscript>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement