Skip to content

Instantly share code, notes, and snippets.

@inog
Created April 10, 2018 07:17
Show Gist options
  • Save inog/a493850b4a9f2dbcb7095c293199595f to your computer and use it in GitHub Desktop.
Save inog/a493850b4a9f2dbcb7095c293199595f to your computer and use it in GitHub Desktop.
divide 2 ints and always round up the result
public static int roundUp(int dividend, int divisor) {
return (dividend + divisor - 1) / divisor;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment