fork download
  1. <script type="text/javascript">;
  2. // Задані значення змінних та констант
  3. const x = 16.55;
  4. const y = -2.75;
  5. const CONSTANT = Math.sqrt(10);
  6.  
  7. // Обчислення виразу
  8. const a = CONSTANT * (Math.pow(3, Math.sqrt(x)) + Math.pow(x, (y + 2)));
  9.  
  10. // Виведення результату
  11. console.log('Результат обчислення виразу a =', a);
  12. </script>
  13.  
Success #stdin #stdout 0.35s 40488KB
stdin
Standard input is empty
stdout
Standard output is empty