Ask your own question, for FREE!
Computer Science 7 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!
Latest Questions
Mari103: How to pop out like a Jacc In the box
7 hours ago 0 Replies 0 Medals
Breathless: Spooky witch but cute
14 hours ago 3 Replies 0 Medals
Arriyanalol: help
14 hours ago 10 Replies 2 Medals
Arriyanalol: @tinydinoUwU stop trying to find a argument u blad lil boy
1 day ago 5 Replies 4 Medals
Jaded012023: Please tell me what you all think of this song
17 hours ago 6 Replies 1 Medal
Arriyanalol: bro how
17 hours ago 2 Replies 3 Medals
Arriyanalol: cant wait for the new bluey movie in 2027
1 day ago 12 Replies 2 Medals
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!