Guest User

Untitled

a guest
Oct 27th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. //first
  2. $first = log(10, 100) / (1 / 100);
  3. //second
  4. $second1 = pow(pow(14661, 6), 1 / 3);
  5. $second2_1 = sqrt(16);
  6. $second2_2_1 = (sqrt(64));
  7. $second2_2_2 = 16 / (sqrt(4));
  8. $second = pow($second2_1 * (($second2_2_1) + $second2_2_2), 1 / 3);
  9. //third
  10. $third1_1 = sqrt(pow(log(10, 100), 4));
  11. $third1_2 = pow((1 / 2), -1);
  12. $third = $third1_1 / $third1_2;
  13. //$fourth
  14. $fourh_1 = 1;
  15. $fourth_2_1 = 2 * sqrt(16);
  16. $fourth_2_2 = sin(deg2rad(30)) * cos(deg2rad(60));
  17. $fourth2 = $fourth_2_1 * $fourth_2_2;
  18. $fourth = $fourh_1 / $fourth2;
  19. //fifth
  20. $fifth = pow(pow(pow(0.5 / sqrt(pow(512 * 0.5, 2)), -1), 1 / 3), 10);
  21. //sixth
  22. $sixth_1 = 3 * pow( (6 * sin(deg2rad(30)) ), 3);
  23. $sixth_2_1 = sqrt(sqrt(pow((6 * 0.5),8)));
  24. $sixth_2_2 = cos(deg2rad(60));
  25. $sixth_2_3 = 21584 * cos(deg2rad(60));
  26. $sixth = $sixth_1 + (($sixth_2_1 / $sixth_2_2) / $sixth_2_3);
  27. $phoneNumber = ($first * ($second / ($third * $fourth))) + $fifth - $sixth;
  28.  
  29.  
  30.  
  31. pre($first, 0);
  32. pre($second1, 0);
  33. pre($second2_1, 0);
  34. pre($second2_2_1, 0);
  35. pre($second2_2_2, 0);
  36. pre($third1_1, 0);
  37. pre($third1_2, 0);
  38. pre($third, 0);
  39. pre($fourh_1, 0);
  40. pre($fourth_2_1, 0);
  41. pre($fourth_2_2, 0);
  42. pre($fourth, 0);
  43. pre($fifth, 0);
  44. pre($sixth_1, 0);
  45. pre($sixth_2_1, 0);
  46. pre($sixth_2_2, 0);
  47. pre($sixth_2_3, 0);
  48. pre ($sixth,0);
  49. pre ($phoneNumber);
  50.  
  51. float 50
  52. float 214944921
  53. float 4
  54. float 8
  55. float 8
  56. float 0.25
  57. float 2
  58. float 0.125
  59. int 1
  60. float 8
  61. float 0.25
  62. float 0.5
  63. float 1073741824
  64. float 81
  65. float 9
  66. float 0.5
  67. float 10792
  68. float 81.00166790215
  69. float 1073744942.9983
Add Comment
Please, Sign In to add comment