fizzbuzz - can it be shorter?

Solution 1:

What about something like:

for(int i=0;i++<100;System.out.println((i%3>0?"":"Fizz")+(i%5>0?i%3>0?i:"":"Buzz")))

Warning: this code is just an exercise of trying to make the code shorter. It is neither good or readable as normal code should try to be!