forked from Sergio0694/FizzBuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFizzBuzz.java
More file actions
27 lines (26 loc) · 865 Bytes
/
FizzBuzz.java
File metadata and controls
27 lines (26 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* FizzBuzz Implementation in Java
* The Sharp Ninja - October 21, 2019
*
* "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"."
*/
package ninja.thesharp;
public class FizzBuzz {
public static void main(String[] args)
{
for (int i = 1; i <= 100; i = i + 1)
{
System.out.println(
i % 3 == 0
? i % 5 == 0
? "FizzBuzz"
: "Fizz"
: i % 5 == 0
? "Buzz"
: String.format("%d", i)
);
}
}
}