Skip to content

Instantly share code, notes, and snippets.

@smallsong
Created August 3, 2018 02:00
Show Gist options
  • Save smallsong/a8d1f7eb848aa2325f306993b9f39b00 to your computer and use it in GitHub Desktop.
Save smallsong/a8d1f7eb848aa2325f306993b9f39b00 to your computer and use it in GitHub Desktop.
获取6位随机数
private String getRandom() {
int result = (int) ((Math.random() * 9 + 1) * 100000);
return Integer.toString(result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment