Java tutorial
//package com.java2s; public class Main { public static int getRandom(int max) { return (int) (Math.random() * max); } }