fork(1) download
  1. // your code goes here
  2.  
  3. const n=5
  4.  
  5. for(let i=0; i<Math.floor(Math.sqrt(n));i++){
  6.  
  7. console.log("*")
  8. }
Success #stdin #stdout 0.04s 16848KB
stdin
Standard input is empty
stdout
*
*