This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #idlginform{ | |
| font-family:Verdana,Helvetica,sans-serif; | |
| -moz-border-radius-bottomleft:10px; | |
| background:#b0cc36; | |
| border-bottom:medium solid #deee98; | |
| border-left:medium solid #deee98; | |
| color:#fffd9c; | |
| float:right; | |
| width:650px; | |
| padding:15px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #idlginform .inpt{ | |
| background:#f4ffc5; | |
| border:thin solid #e2fc71; | |
| font-family:Verdana,sans-serif; | |
| margin:0 3px 0 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #idlginform .inpt:focus{ | |
| background:yellow; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <input class="btn" type="submit" name="sign" value=""/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Karyawan { | |
| private String nama; | |
| private String nip; | |
| private String golongan; | |
| private double gaji; | |
| public void setNama(String nama) | |
| { | |
| this.nama=nama; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Manager extends Karyawan { | |
| private double tunjangan; | |
| private String bagian; | |
| private Staff st[]; | |
| public void setTunjangan(double tunjangan) | |
| { | |
| this.tunjangan=tunjangan; | |
| } | |
| public double getTunjangan() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Staff extends Karyawan { | |
| private int lembur; | |
| private double gajiLembur; | |
| public void setLembur(int lembur) | |
| { | |
| this.lembur=lembur; | |
| } | |
| public int getLembur() | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Utama { | |
| public static void main(String[] args) | |
| { | |
| System.out.println("Program Testing Class Manager & Staff"); | |
| Manager man[]=new Manager[2]; | |
| Staff staff1[]=new Staff[2]; | |
| Staff staff2[]=new Staff[3]; | |
| //pembuatan manager |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| program sudoku; | |
| uses crt,dos; | |
| type | |
| puzzle=array[0..80]of integer; | |
| arraysol=array[0..2]of puzzle; | |
| waktu=record | |
| jam,menit,detik,sec:word; | |
| end; | |
| const | |
| database:arraysol=( |