Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: [CODE]// Emran T. Atatri // Jenin - Palestine // <<mail removed>> // this is my solution of caeser cipher, but you can use a key public class Decrypt{ public static void main(String[] args){ Decrypt d = new Decrypt(); d.ne(); d.de(); } char[] n = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z', '0','1','2','3','4','5','6','7','8','9',' ','.','-','_','!','@','#','$','%','^','&','*','(',')',':','<','>','?','/'}; String s0 = … |
The End.