Hey!
Hope you will like this short tutorial. :)
Programs used:
IDE: http://www.eclipse.org/downloads/eclipse-packages/
Compiler: http://www.mingw.org/
Let's start!
We are looking for an encryption like this:
Therefore we need nothing special.
Only 3 variables.
We can also write the code to input our variables.
Now we need a for-loop to go through every letter.
Therefore we declared the variable " inputLength " wich gives us the length of our input with:
In our for-loop we are checking if the current charactere is alphanumeric.
Now we are converting our upper case letters into lower case letters.
In our loop we need another for-loop wich is our displacement.
Inside there we check if the current letter is " z " and if it's true, then convert it to " a ".
That's because we don't want to run out of letters if we reach " z ".
We also add an else statement. In there we are just counting up our input variable.
For the decrypting we are doing almost the same, but instead of counting our input variable up, we are counting it down.
That's it! Hope you like it :)