| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/codec-akash/DSA-PS-Java-Programs/master/FizzBuzz.java | [Back] [Original] |
public class FizzBuzz {
/**
* Write a program that prints the numbers from 1 to 100 and for multiples of '3' print "Fizz"
* instead of the number and for the multiples of '5' print "Buzz".
* @param args
*/
public static void main(String[] args) {
System.out.println("FizzBuzz");
for(int i=1; i
| Web Proxy Viewer | New URL | Original Page |