Advertisement
K-04

Untitled

Oct 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <!doctype html public "-//W3C//DTD HTML 4.0 //EN">
  2. <html>
  3. <head>
  4. <title>Title Here!</title>
  5. </head>
  6. <body>
  7. <?php
  8. // Konstanta untuk nilai Judul
  9. define ("Judul", "Hitung Luas Lingkaran");
  10. // Konstanta untuk nilai phi
  11. define ("PHI", 3.14);
  12. echo Judul;
  13. $r=10;
  14. echo "<br>Jari-jari : $r<br>\n";
  15. $luas=PHI * $r * $r;
  16. echo "Luas Lingkaran = $luas";
  17. ?>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement