-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcount.php
More file actions
15 lines (12 loc) · 856 Bytes
/
count.php
File metadata and controls
15 lines (12 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
///////////////////////////////////////////////////////////// Soal 3 ////////////////////////////////////////////////////////////////////////
// Agus kebingungan melihat kode yang dibuatnya, hasil dari function pythagoras() selalu kosong, bantu agus untuk memperbaiki kode yang //
// dibuat. //
// Output yang diharapkan adalah angka. //
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function pythagoras($a, $b)
{
$c = sqrt($a * $a + $b * $b);
$c;
}
echo "Hasil dari pythagoras adalah " . pythagoras(3, 4) . "\n";