-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTG4_Latihan4.php
35 lines (31 loc) · 1.06 KB
/
TG4_Latihan4.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Keuntungan Penjualan</title>
</head>
<body>
<?php
// Inisialisasi Variabel
$nama_barang = 'Kaos Olahraga';
$harga_beli = 30000;
$harga_jual = 40000;
$jumlah_barang = 5;
$pajak = 0.1;
// Menghitung total pembelian, total penjualan dan laba kotor
$total_pembelian = $harga_beli * $jumlah_barang;
$total_penjualan = $harga_jual * $jumlah_barang;
$laba_kotor = $total_penjualan - $total_pembelian;
// Menghitung laba bersih
$laba_bersih = $laba_kotor - ($laba_kotor * $pajak);
// Menampilkan hasil
echo "Nama barang : " .$nama_barang . "<br>";
echo "Total pembelian : " .$total_pembelian . "<br>";
echo "Total penjulan : " .$total_penjualan . "<br>";
echo "Laba kotor : " .$laba_kotor . "<br>";
echo "Laba bersih : " .$laba_bersih . "<br>";
?>
</body>
</html>