Advertisement
Guest User

Untitled

a guest
Oct 15th, 2017
1,949
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. import java.util.Random;
  2. public class Liczby
  3. {
  4. public static void main(String[] args)
  5. {
  6. Random losowanie = new Random();
  7. int liczba = losowanie.nextInt(100);
  8. System.out.println("Liczba wylosowana " +losowanie);
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement