Advertisement
hamjoricantiq

hitung jumlah huruf

Oct 1st, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.87 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>NisrinaNadaAgnela XIRPL1</title>
  4. </head>
  5. <body>
  6. <center>
  7. <h1>Menghitung Jumlah Huruf Vokal</h1>
  8. <form method="post">
  9.     <p>Masukan Nama Anda (dalam huruf kecil)  <input type="text" name="Nama"></p>
  10.     <input type="radio" name="alp" value="a">a
  11.     <input type="radio" name="alp" value="i">i
  12.     <input type="radio" name="alp" value="u">u
  13.     <input type="radio" name="alp" value="e">e
  14.     <input type="radio" name="alp" value="o">o
  15.     <input type="submit" name="submit" >
  16.     <br/>
  17.     <br/>
  18. <?php
  19.    if (isset($_POST['submit'])) {
  20.    $nama=$_POST['Nama'];
  21.    $alpabet = $_POST['alp'];
  22.    $hitung = 0;
  23.    $j = 0;
  24.    while ($j < strlen($nama)){
  25.      if ($nama[$j] == $alpabet ) {
  26.          $hitung++;
  27.      }
  28.    $j++;
  29.    }
  30.  echo "Jumlah huruf ".$alpabet." pada nama ".$nama." adalah ". $hitung;
  31. }
  32. ?>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement