ricskooo

Untitled

Jan 27th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class test {
  2. public static void main(String args[]) {
  3. for(int i=1;i<101;i++){
  4. System.out.println(i % 15 != 0 ? i % 5 != 0 ? i % 3 != 0 ?
  5. i : "Fizz" : "Buzz" : "FizzBuzz");
  6. }
  7. }
  8. }
Add Comment
Please, Sign In to add comment