Every by $10$ divisible number is ending by the digit $0$.
My solution:
let be $N(x)$ a natural number, which is divisible by $10$,
let be $L(x)$ the last digit of a number
$( \forall x)( N(x) \implies L(x)) $
and the negation of it is:
$ (\exists x)( \neg N(x) \implies \neg L(x)).$
Your first symbolization is correct, but for the negation of it, please note that the $\neg$ does not distribute over the $\Rightarrow$. That is:
$$\neg (P \Rightarrow Q) \not \equiv \neg P \Rightarrow \neg Q$$
But rather:
$$\neg (P \Rightarrow Q) \equiv \neg (\neg P \lor Q) \equiv \neg \neg P \land \neg Q \equiv P \land \neg Q$$
As such:
$$\neg ( \forall x)( N(x) \implies L(x)) \equiv ( \exists x)\neg ( N(x) \implies L(x))\equiv ( \exists x)( N(x) \land \neg L(x))$$