Prodi Sistem Informasi | Belajar HTML dan PHP | Skripsi SI
1000 Penghafal Quran
Pengobatan Ruqyah Mandiri
Sistem Informasi (S1)
Manajemen Informatika
Komputer dan Pendidikan
Blog | Kontak | Siap Kerja | Sertifikat | PrivacyPolicy | Inggris Arab | Daftar Isi

Monday, February 21, 2022

DDP 3

 ddp3a.php
<?php
//menghitung penjualan bersih
$jual=100;
$potongan=0.1;
$net=$jual-($jual*$potongan);
echo "Penjualan bersih = Rp $net,00";
?>

**
ddp3b.php
<?php
//penggunaan operator modulus/sisa hasil bagi
$hal=11;
if ($hal % 2 == 0)
echo 'Halaman genap';
else
echo 'Halaman ganjil';
?>

**
<?php
//penggunaan inkremen
for($i=1;$i<=100;$i++){
echo "$i ";
}
?>

**
ddp3c.php
<?php
$hari=date("D");
if ($hari=="Mon")
echo "Selamat berlibur";
else
echo "Selamat bekerja (hlm. 20)";
?>

"Boleh Konsultasi Masuk Jurusan Sistem Informasi via IG atau Tiktok."
Tips Skripsi Program Studi Sistem Informasi

No comments:

Post a Comment