Concept of programming Language by Carlo Ghezzi, Politecnico di Milano. Mehdi Jazayeri,

Concept of Programming Language http://www.scribd.com/embeds/144615462/content?start_page=1&view_mode=scroll&show_recommendations=true //pagead2.googlesyndication.com/pagead/show_ads.js Continue reading Concept of programming Language by Carlo Ghezzi, Politecnico di Milano. Mehdi Jazayeri,

Caesar Cipher Encription & Decription

Can easily hide your text using this type of encription methodmore : wiki /* Encripting Part*/public class Caserchiper{        public void Encripter(String S, int j){            for(int i=0; i<S.length(); i++){        // get the paticular Character on the String        char C = S.charAt(i);        // Casting the value to integer        int value = (int)C;        // adding some intger        int encrpt … Continue reading Caesar Cipher Encription & Decription