int messageLetters;//the numbers of each ASCII letter, e.g. 65 = A
cout << "Enter message code: ";
cin >> messageLetters;
if (messageLetters > 0 && <= 128);
{
cout << char(messageLetters) << "|";
}
else
{
cout << char(0);
}
Whenever I run the debugger, it says the there's an illegal if without an appropriate else. The 2nd "cout" also isn't recognized as that. The "<=" is also giving me an "expected a expression" error.
I'm trying to get it to where you type in ASCII numbers and get the appropriate letters, symbols, etc.


