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
| unit Playfair; | |
| interface | |
| uses | |
| Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, | |
| Dialogs, StdCtrls, Grids, ComCtrls,About, Buttons, ExtCtrls; | |
| type | |
| TForm1 = class(TForm) |
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
| #include<stdio.h> | |
| #include<string.h> | |
| #include<conio.h> | |
| void enkripsi(); | |
| void dekripsi(); | |
| int main() | |
| { | |
| int pilihan; |
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
| <?php | |
| //--------------------------konversi waktu---------------------------- | |
| function waktu($waktu){ | |
| if(($waktu>0) and ($waktu<60)){ | |
| $lama=number_format($waktu,2)." detik"; | |
| return $lama; | |
| } | |
| if(($waktu>60) and ($waktu<3600)){ | |
| $detik=fmod($waktu,60); | |
| $menit=$waktu-$detik; |
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
| unit Konversi; | |
| interface | |
| uses | |
| Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, | |
| Dialogs, StdCtrls,Math,About; | |
| type | |
| TForm1 = class(TForm) |
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
| #include <iostream> | |
| #include <cmath> | |
| using namespace std; | |
| void agp_sieve_erasto(int akhir) | |
| { | |
| int i,j,k,a,c,jml; | |
| int data[10000]; | |
| float nil_stop; |
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
| <?php | |
| /** | |
| * @author Mhd. Fauzi | |
| * @copyright 2014 | |
| */ | |
| class Node{ | |
| public $kata; | |
| public $next; |