Skip to content

Instantly share code, notes, and snippets.

@mrnirva
Created May 27, 2020 03:55
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 mrnirva/e2f698411063d12c994a8470a33f23d7 to your computer and use it in GitHub Desktop.
Save mrnirva/e2f698411063d12c994a8470a33f23d7 to your computer and use it in GitHub Desktop.
import java.util.Random;
//Normal Random sınıfını ekliyoruz
Random random = new Random();
int minimum = 10;
int maksimum = 25;
int randomSayi = random.nextInt((maksimum - minimum ) + 1) + minimum;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment