It looks good, glad you finally understood some things. I don't see any of the common pitfalls ;)
Apparently you still don't understand the [ code=cpp ] forum tag. All you need to do is surround your code like this.
[ code=cpp ] //Code goes here//
// tower of hanoi
// June 21st, 2013
// Yours truly
#include <SFML/Graphics.hpp>
int main()
{
........[ /code ]
Put those tags around your code and then remove the spaces from inside the brackets ("[" & "]") and you should be good. Note how it looks with out spaces.
// tower of hanoi
// June 21st, 2013
// Yours truly
#include <SFML/Graphics.hpp>
int main()
{