Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. import java.util.Random;
  2.  
  3. public class RandomNumber {
  4.  
  5. public int randomNumber(){
  6.  
  7. Random random = new Random();
  8. return random.nextInt(10);
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement