Question: Do it in C++. Task - Implement a class named ShiftCipher with a property called shiftAmount. - Implement encode and decode functions for the ShiftCipher

Do it in C++.
Do it in C++. Task - Implement a class named ShiftCipher with

Task - Implement a class named ShiftCipher with a property called shiftAmount. - Implement encode and decode functions for the ShiftCipher class as follows, - encode function should take a string or a char array, and return another string or char array by shifting the letters in the alphabeth by the shiftAmount. For example, given the string "abcd" the function should return "bcde". You can achieve this by converting chars to integers, using ASCII representations to shift (eg. a=97,b=98 ), and convert back to chars. - decode function should take a shift encoded string or char array and convert it back to its original form. This function is the reverse of the encode function. Note: Do not compress your files, submit only CPP files. Note: Use of ChatGPT or other language models is prohibited and can be detected, detected submissions will get 0

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!