This following exercise will not in any way contribute to your final grade. We're using it simply to gauge the basic programming expertise of the students in this course.

FizzBuzz

Using Python write a clean, clear program to solve the following problem. Your program should represent your highest quality work possible within the time constraints.

For the integers in the range 1 to 100 inclusive, print one line per integer:

  1. If the integer is divisible by 3, print the string "Fizz"
  2. If the integer is divisible by 5, print the string "Buzz"
  3. If the integer if divisible by both 3 and 5, print the string "FizzBuzz"
  4. In all other cases, print the integer itself.
When you are done, hold onto what you have - we will be setting up our submission system via Git shortly.
If you are not done in 20 minutes, simply submit whatever you have at that point.