0
Challenge: make a RNG
Make a random number generator ranging from 0 to 65536.
3 Respostas
+ 3
using python
import random
print(random.randrange(65537))
+ 1
reusing code, I use it with Math.floor(Math.random()*n in somewhere here https://code.sololearn.com/WVj1t1nAI3En/?ref=app
0
document.write(Math.round(Math.random() * 65536));