twitter


sekarang kita membahas mengkonversikan dari Decimal ke Octal.

langsung saja kita bahas dan lihat codingnya :)

<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<?php
if (isset($_POST['decimal'])){
    $decimal = $_POST['decimal'];
    $original = $_POST['decimal'];
    if (preg_match(' / [ ^ 0 - 9 ] / ' ,$decimal)){
            die ("Maaf. inputan salah..");
    }
    else {
        while($decimal>0){
    $Hasil=$decimal%8;
    switch($Hasil){
        case 0: $octal .="0"; break;
        case 1: $octal .="1"; break;
        case 2: $octal .="2"; break;
        case 3: $octal .="3"; break;
        case 4: $octal .="4"; break;
        case 5: $octal .="5"; break;
        case 6: $octal .="6"; break;
        case 7: $octal .="7"; break;
        default:break;
    }
    if($decimal/8 == 0){
        $sisa=($decimal%8);
        $decimal=$sisa;
    }
    else{
        $sisa=($decimal/8);
        $decimal=$sisa%8;
    }}
        $result = strrev ($octal);
        echo "Bilangan $original (desimal) dalam octal adalah $result.
        <a href='Konversi_Des_to_Octal.php'>Back</a> to the script";
        }
}
else
{
?>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title></title>
    </head>
    <body>
        <form action="<?php echo $_SERVER['php_self']; ?>"
              method="POST">
            <h3>Masukkan bilangan Desimal disini (cepat!!)
            </h3><input type="text" size="50" name="decimal">
            <input type="submit" value="Konversikan!">
        </form>
       
        <?php
        // put your code here
        ?>
    </body>
</html>
<?php
}
?>

lalu tekan shift f6 dan muncul seperti ini.

dan hasilnya seperti berikut :)

Semoga bermanfaat :)

0 komentar:

Posting Komentar