PageRenderTime 42ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/2.0/Tests/Math/tan.php

#
PHP | 10 lines | 7 code | 3 blank | 0 comment | 0 complexity | 16f635450f8cc49706913d6e995d1fcc 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(tan(M_PI_2-1),5); // 1
  5. echo "\n";
  6. echo substr(round(tan(M_PI_2),5), 0, 4) . "...E..."; // 1
  7. ?>