1. /* 5. naloga */
  2. public class Naklucna_stevila {
  3. public static void main(String[] args) {
  4. for(int i = 1; i <= 10; i++) {
  5. System.out.format("%2d. stevilo je: ", i);
  6. System.out.println(Math.random());
  7. }
  8. }
  9. }
  10.