fork download
  1. var c = 100;
  2.  
  3. var m = 113;
  4. document.writeln(Math.ceil (m / c) * c);
  5. document.writeln(Math.round(m / c) * c);
  6. document.writeln(Math.floor(m / c) * c);
  7.  
  8. var n = 355;
  9. document.writeln(Math.ceil (n / c) * c);
  10. document.writeln(Math.round(n / c) * c);
  11. document.writeln(Math.floor(n / c) * c);
  12.  
Runtime error #stdin #stdout 0.29s 213248KB
stdin
Standard input is empty
stdout
Standard output is empty