-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeside.php
21 lines (17 loc) · 1.09 KB
/
beside.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
///////////////////////////////////////// Soal 2 /////////////////////////////////////////////////
// Buatlah sebuah fungsi untuk menghitung jumlah huruf hidup dan huruf mati dari sebuah string. //
// //
// contoh: //
// $string = "programmer"; //
// output : //
// huruf hidup: 3 //
// huruf mati: 7 //
//////////////////////////////////////////////////////////////////////////////////////////////////
$huruf_mati = 0;
$huruf_hidup = 0;
$string = "Technoclub";
// isi kode kamu dibawah ini
// kode dibawah ini jangan diubah ya
print_r("huruf hidup: " . $huruf_hidup . "\n");
print_r("huruf mati: " . $huruf_mati . "\n");