Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!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>Tugas Branching | Tampilkan Huruf sesuai jumlah looping</title>
- <link rel="shortcut icon" href="../html/images/0.png" type="image/x-icon">
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
- </head>
- <body>
- <div class="container">
- <h1>Aturan Nilai RGI 2021</h1>
- <form action="" method="post">
- <div>
- <input type="text" name="nama" class="form-control" placeholder="Nama Lengkap" required autofocus>
- </div>
- <div class="form-input">
- <input type="number" name="nilai" class="form-control" placeholder="Nilai" required>
- </div>
- <input type="submit" name="proses" value="Proses">
- </form>
- <?php
- if(isset($_POST['proses'])) {
- $nama = $_POST['nama'];
- $nilai = $_POST['nilai'];
- if($nilai>=85 AND $nilai<=100) {
- $ip=4; $huruf="A";
- } else if($nilai>=80 AND $nilai<85) {
- $ip=3.7; $huruf="A-";
- } else if($nilai>=75 AND $nilai<80) {
- $ip=3.3; $huruf="B+";
- } else if($nilai>=70 AND $nilai<75) {
- $ip=3; $huruf="B";
- } else if($nilai>=65 AND $nilai<70) {
- $ip=2.7; $huruf="B-";
- } else if($nilai>=60 AND $nilai<65) {
- $ip=2.3; $huruf="C+";
- } else if($nilai>=55 AND $nilai<60) {
- $ip=2; $huruf="C";
- } else if($nilai>=50 AND $nilai<55) {
- $ip=1.7; $huruf="C-";
- } else if($nilai>=40 AND $nilai<50) {
- $ip=1; $huruf="D";
- } else if($nilai>=0 AND $nilai<40) {
- $ip=0; $huruf="E";
- } else {
- $ip=""; $huruf="Salah input nilai";
- }
- echo "$nama, Nilai Anda $nilai, masuk dalam kategori $huruf dengan Indeks Prestasi $ip";
- }
- ?>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement