Ask your own question, for FREE!
Computer Science 16 Online
OpenStudy (ketz):

Hi I need help with c++ (Caesar Cipher)...Urgent http://cpp.sh/62bjg when source is "a" and c is 1 it gives me a symbol '{' whereas if I change line 70 to source[i]-- it works, the code is working for decrement but not increment!!!

hartnn (hartnn):

It doesn't totally work for decrement as well, the input abc yields yab. Thats because the loop `for (int j = 0; j < 26; j++)` does not get `break` when the source is decremented. So, at first when source is 'a', it becomes 'z' and then this j loop continues and decrements the source making it 'y'. Can you think of a way to break that loop when source is modified even once?

hartnn (hartnn):

used 'continue' and 'break' to achieve that here: http://cpp.sh/6zbx6 let me know if you still have doubts :)

OpenStudy (ketz):

Thx man...you are superb....First I did not know why the loop was not working...Then I tried the 'break' statement as you suggested but obviously it was working only for alphabet 'a'....if alphabet 'b' to increment the break statement would break the loop....then u suggested to use 'continue'...Your reply was really helpful...Thx again...

hartnn (hartnn):

welcome ^_^

hartnn (hartnn):

whats the problem?

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!