This is a simple FizzBuzz program printing out numbers from 1 to 100, except those numbers are multiple of 3, 5 and both 3 and 5.
Though it is a simple program, it still took me 10 minutes to complete from the time opening Eclipse to the time geting the correct result. I didn't encounter big problem except fixing some syntax errors.
The most thing I learned from this project is that no matter how small is, the program is still posible to break down into small pieces. This is considered a good programming style because it is good fot testing and it will eventurally benefit to the large program.