void main()
{
cout << "Input the sentence you want translated:";
string rot13 (string normalWords);
}

Is that how you call a function in C++? I've barely used C++ at all, but if that were C, I'd wonder why you put the "string" in front of rot13.

(btw, why aren't you using the % operator like it said? =)