I can't figure out why my code is not compiling. I think I might have the wrong operators in my code though.
I've tried using different operator signs within functions.
if (encrypt <= 'A' && encrypt >= 'Z')
{
encrypt = encrypt + shift;
else if(encrypt <= 'a' && >= 'z')
{
encrypt = encrypt + shift;
if (decrypt <= 'A' && decrypt >= 'Z')
{
decrypt = decrypt - shift;
else if(decrypt <= 'a' && >= 'z')
actual results are expected expression before >= token. the code above is snippets of what I think is wrong with my code. I'm trying to shift cipher.