Skip to content

Instantly share code, notes, and snippets.

@joseywoermann
Created September 3, 2021 10:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joseywoermann/ea15be3f64fe093fcca1712744836141 to your computer and use it in GitHub Desktop.
Save joseywoermann/ea15be3f64fe093fcca1712744836141 to your computer and use it in GitHub Desktop.
public class Dice {
/**
* Generate a random full number between 0 and the specified number. (Upper limit)
*/
public static int roll(int pSides) {
return (int) Math.round(Math.random() * (pSides - 0));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment