Karthik Writes The Best!
Web place where his words are worth! (BEWARE OF THIS HACKER)
Friday, September 17, 2010
A Simple Encryption Algorithm!
int Encrypt(char a)
{
if (a == ' ')
return 95;
else if (a == '\n')
return 96;
for (int x = 0; a != x; x++)
{
if (a-33 == x)
return x;
}
return 0;
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment