6.4.. Ispisati generisani trocifren slučajan broj.

Opis programa: Slučajan broj se generiše funkcijom random() iz biblioteke Math u opsegu [0 , 1): nula je uključena a jedan nije uključen u opseg. Trocifren broj se računa na osnovu izraza: = (max-min) * rnd + min odnosno: (1000 - 100) * Math.random() + 100. Za cjelobrojne vrijednosti se koristi (int) (Vidi Slučajan broj /RANDOM/ - funkcija Math.random())

Listing programa:

// 06421114
public class Main {
 
    public static void main(String[] args) {                
        int broj = (int) ((1000 - 100) * Math.random() + 100);   // slucajan trocifren broj
        System.out.println("Slucajan trocifren broj = " + broj); // ispis
    }
}

II varijanta
public class Main {
 
    public static void main(String[] args) {   
        int max = 1000;   // maksimalna vrijednost + 1 (trocifreni 999+1=1000)
        int min = 100;    // minimalna vrijednos (trocifreni 100)
        int broj = (int) ((max - min) * Math.random() + min);    // slucajan trocifren broj
        System.out.println("Slucajan trocifren broj = " + broj); // ispis
    }
}

Ispis na ekranu:
Slucajan trocifren broj = 325

Index