fork download
  1. const x = 17.421;
  2. const y = 10.365;
  3.  
  4. const a = Math.pow(y, 1/4) + Math.pow(x + 1, 1/3);
  5.  
  6. console.log(`Result is a = ${a.toFixed(4)}`);
  7.  
Success #stdin #stdout 0.03s 16392KB
stdin
1
2
10
42
11
stdout
Result is a = 4.4353