예제 #1
0
function partition($input1)
{
    //$input1 = array(11.5,5,5,1);
    $partitionStatus = returnSum($input1);
    return $partitionStatus;
}
예제 #2
0
    $length = strlen((string) $num);
    for ($i = 0; $i < $length; $i++) {
        $sum += $num % 10;
        $num = floor($num / 10);
    }
    return $sum;
}
if (isset($_POST['submit'])) {
    if (isset($_POST['str'])) {
        $arrOFStr = explode(', ', $_POST['str']);
        ?>
        <table border="1">
            <?php 
        for ($strIndex = 0; $strIndex < sizeof($arrOFStr); $strIndex++) {
            $num = $arrOFStr[$strIndex];
            echo "<tr><td>{$num}</td>";
            if (is_numeric($num) && !strpos($num, '.') && !strpos($num, ',')) {
                echo "<td>" . returnSum($num) . "</td></tr>";
            } else {
                echo "<td>I cannot sum that</td></tr>";
            }
        }
        ?>
        </table>
    <?php 
    }
}
?>

</body>
</html>