-super simple
Code:
if (Key.isDown(Key.RIGHT)) {
	_x += 1;
}
-harder;

Code:
if (Key.isDown(Key.RIGHT)) {
	x += 1;
} else {
	x *= .8;
}
_x += x;