top of page
Click here to go to the home page of AskTheCode.

The FizzBuzz Program Implementation in Java - AskTheCode

Team ATC

The FizzBuzz Program Solution in Java | Problem Solving in Java | Ask The Code

 

FizzBuzz Program Implementation in Java


Problem:

The FizzBuzz Program. Let's play a game of FizzBuzz! It has simple rules that you have to follow, i.e. basic rules of math. Isn't it fun, right?

Write a program that prints each number ranging from 1 to 100 on a new line.

But, print out "Fizz" when the number is a multiple of 3, and print "Buzz" when it is a multiple of 5.

 

Output:

1    2    Fizz    4    Buzz    Fizz    7    8    Fizz    Buzz    11   
Fizz    13    14    FizzBuzz    16    17    Fizz    19    Buzz    
Fizz    22    23    Fizz    Buzz    26    Fizz    28    29    FizzBuzz    
31    32    Fizz    34    Buzz    Fizz    37    38    Fizz    Buzz    41    Fizz    43    44    FizzBuzz    46    47    Fizz    49    Buzz    Fizz    52    53    Fizz    Buzz    56    Fizz    58    59    FizzBuzz    61    62    Fizz    64    Buzz    Fizz    67    68    Fizz    Buzz    71    Fizz    73    74    FizzBuzz    76    77    Fizz    79    Buzz    Fizz    82    83    Fizz    Buzz    86    Fizz    88    89    FizzBuzz    91    92    Fizz    94    Buzz    Fizz    97    98    Fizz    Buzz
 

Code:


public class FizzBuzzProgram{
	public static void main(String[] args) {
		for (int count = 1; count <= 100; count++) {
			if (count % 3 == 0)
				System.out.println("Fizz");

			else if (count % 5 == 0)
				System.out.println("Buzz");
				
			else
				System.out.println(count);
		}
	}
}
 

Variety of FizzBuzz that you should give a try to:

  1. Fizz or Buzz or FizzBuzz: Program that prints "Fizz" if the number is a factor of 3, "Buzz" if it's a factor of 5, and "FizzBuzz" if it's a factor of both 3 and 5.

  2. Fizz or Buzz or FizzBuzz or Number: Program that prints "Fizz" if the number is a multiple of 3, "Buzz" if it's a factor of 5, and "FizzBuzz" if it's a factor of both 3 and 5. Otherwise print the number.

Recent Posts

See All

Comments


bottom of page