fork(1) download
  1. // your code goes here
  2. function rand(max,min)
  3. {return Math.floor(Math.random()*(max-min)+min)};
  4. let result=rand(5,1);
  5. let x="";
  6. let out="";
  7. if(x==result){out="YOU WON!"}
  8. else{out="YOU LOSE!"}
  9. console.log("RESULT:"+ result);
  10. console.log("pick:"+x+"\n"+out);
Success #stdin #stdout 0.03s 18556KB
stdin
3
stdout
RESULT:4
pick:
YOU LOSE!