What "e" means in PHP??

<?php
echo 2e0 . '<br/>';
echo 2e1 . '<br/>';
echo 2e2 . '<br/>';
echo 2e3 . '<br/>';
/*
outputs:
2
20
200
2000
*/
?>

Comments

Popular posts from this blog

Timus 1209. 1, 10, 100, 1000... accepted solution in C

Timus Problem 1086. Cryptography Accepted Solution in C

Timus 1083. Factorials!!! Accepted Solution in C