You are viewing a single comment's thread. Return to all comments →
java solution
import java.io.; import java.util.;
public class Solution {
public static void main(String[] args) { for(int i=1; i<=100; i++){ if(i % 3 == 0 && i % 5 == 0){ System.out.println("FizzBuzz"); }else if(i % 3 == 0){ System.out.println("Fizz"); }else if(i % 5 == 0){ System.out.println("Buzz"); }else{ System.out.println(i); } } }
}
Seems like cookies are disabled on this browser, please enable them to open this website
FizzBuzz
You are viewing a single comment's thread. Return to all comments →
java solution
import java.io.; import java.util.;
public class Solution {
}