Skip to content

Instantly share code, notes, and snippets.

@nichtemna
Created August 10, 2016 16:00
Show Gist options
  • Save nichtemna/e0bf493ccdf80e07608fa00c9ff61da5 to your computer and use it in GitHub Desktop.
Save nichtemna/e0bf493ccdf80e07608fa00c9ff61da5 to your computer and use it in GitHub Desktop.
Get last digit from a number
int number = 101;
int lastDigit = number % 10;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment