The Algorithms logo
The Algorithms
AboutDonate

Fizz Buzz

C
S
V
//Title:FizzBuzz
// Author:ShivamVerma
// Email:shivamthegreat.sv@gmail.com

// Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz".

void main() {
  fizzBuzz();
}

void fizzBuzz() {
  for (int i = 1; i <= 100; i++) {
    if (i % 3 == 0 && i % 5 == 0) {
      print("FizzBuzz");
    } else if (i % 3 == 0) {
      print("Fizz");
    } else if (i % 5 == 0) {
      print("Buzz");
    } else {
      print(i);
    }
  }
}