Let's Learn Computing
Pages
(Move to ...)
Home
Revision Presentations
▼
Showing posts with label
Java
.
Show all posts
Showing posts with label
Java
.
Show all posts
Friday, 9 May 2014
Java program for Hill Cipher
›
import javax.swing.JOptionPane; /** * * @author dixit bhatta */ public class HillCipher { //the 3x3 key matrix for 3 charact...
Java program for Vigenere Cipher
›
import javax.swing.JOptionPane; /** * * @author dixit bhatta */ public class Vigenere { public static String key = "ENIG...
Java program for Playfair Cipher
›
import javax.swing.JOptionPane; /** * * @author dixit bhatta */ public class PlayFair { //the key matrix public static c...
1 comment:
Java program for Mono-alphabetic Substitution Cipher
›
import javax.swing.JOptionPane; /** * * @author dixit bhatta */ public class Monoalphabetic { public static String key = ...
Java program for Caesar Cipher
›
import javax.swing.JOptionPane; /** * * @author dixit bhatta */ public class Ceaser { /** * @param args the command li...
Friday, 31 May 2013
Java program to simulate FIFO and LRU page replacement algorithms
›
import java.io.BufferedWriter; import java.io.File; import java.io.FileNotFoundException; import java.io.FileWriter; import java.io.IOE...
2 comments:
Thursday, 30 May 2013
Java program to reverse the content of a text file
›
import java.io.BufferedWriter; import java.io.File; import java.io.FileNotFoundException; import java.io.FileWriter; import java.io.IOE...
25 comments:
›
Home
View web version