math ramdom entre 1 y 100 code example
Example 1: math random equitative js
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
Example 2: como limitar o random em java
int numero = (int)(Math.random()*(X-Y+1)+Y;
int numero = (int)(Math.random()*(75-25+1)+25);