Support Forums

Full Version: Rot-13 encryptor
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i'm trying to make a rot-13 encryptor and i have the math done but i'm not sure how to get the number that the math will output, to convert back to a letter that will then be outputted by the program as the decrypted message.
i have a for loop in my public String decrypt method that is
for(int i = 0; i < message.length(); i++)
{
}
but i'm not sure what to put inside so if anyone could help me that would be great! thanks! Thumbsup