Answers for "math ramdom entre 1 y 100"

2

math random equitative js

function getRandomInt(min, max) {
  return Math.floor(Math.random() * (max - min)) + min;
}
Posted by: Guest on May-09-2020
0

como limitar o random em java

int numero = (int)(Math.random()*(X-Y+1)+Y;
int numero = (int)(Math.random()*(75-25+1)+25);
Posted by: Guest on September-01-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language