Is it possible to express the below piecewise defined function as a single expression? If not, why? In what cases is it possible?
$$ e(x) := \begin{cases} 0, & x \in [0, 199] \\ 5, & x \in [200, 449] \\ 10, & x \in [450, 699] \\ 15, & x \in [700, 949] \\ 20, & x \in [950, 1200] \\ 25, & x \in [1200, \infty) \end{cases} $$
where $x \in \mathbb{N}$.
What I mean by "single expression" is that it should be possible to compute $e(x)$ on a calculator by blindly plugging in the value of $x$ into the the formula for $e(x)$ without having to think of in what interval $x$ falls. I am mainly interested in learning whether there is a general procedure for doing so and under what circumstances it is possible to produce a single expression that makes the function simpler to use rather than giving rise something "ugly and complicated".