easyctf-2017/fizz-buzz-1/description.md
Brandon John 595bed296d Addid a couple of fizz buzz programming problems
The programming grader still needs to be added, IDK where to do that.
2017-02-11 23:06:26 -06:00

25 lines
421 B
Markdown

Write a program that outputs the numbers 1 through n, in incremental order, one per line.
However, replace any line that is a multiple of 3 with "Fizz" and any that are a multiple of 5 with "Buzz". Any line that is a multiple of 3 and 5 should be written as "FizzBuzz".
The input will be the number of lines to write, n, followed by a linebreak.
Sample output:
```
1
2
Fizz
4
Buzz
...
13
14
FizzBuzz
16
17
...
```