Q:

Write a PHP script to convert scientific notation to an int and a float

0

Write a PHP script to convert scientific notation to an int and a float.

Sample scientific notation : 4.5e3

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

<?php
$val = '4.5e3';
$ival = (int) $val;
$fval = (float) $val;
echo $ival."\n";
echo $fval."\n";
?>

Sample Output:

4                                                           
4500

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now