PageRenderTime 38ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/2.0/Tests/Math/exp.php

#
PHP | 9 lines | 8 code | 1 blank | 0 comment | 0 complexity | f57956320a8dcf119461793e7dcd7d3a MD5 | raw file
Possible License(s): CPL-1.0, GPL-2.0, CC-BY-SA-3.0, MPL-2.0-no-copyleft-exception, Apache-2.0
  1. [expect php]
  2. [file]
  3. <?php
  4. echo round(exp(0),7) . "\n";
  5. echo round(exp(1),7) . "\n";
  6. echo round(exp(12),7) . "\n";
  7. echo round(exp(5.7),7);
  8. ?>