6.4.. Ispisati generisani dvocifren 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. Dvoccifren broj se računa na osnovu izraza: (int): (100 - 10) * Math.random() + 10, odnosno: (int) ((max - min) * Math.random() + min). Za cjelobrojne vrijednosti se koristi (int) (Vidi Slučajan broj /RANDOM/ - funkcija Math.random())

Listing programa:

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

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

Ispis na ekranu:
Slucajan dvocifren broj = 55 

Index