Alternatively, you can make a simple class that holds the state of the key pressed from both the actual frame and the previous one, and depending of those values you can tell if it has been released, pressed, etc.
myKey.update( sf::Keyboard::isKeyPressed(sf::Keyboard::C) );
if ( myKey.wasReleased() )
creditos = creditos + 100;