Question
A) Create a Rot13DecoderRing class. It will have class level string variables encodedText and clearText. Add a canonicalizeString method that takes a string s, replaces
A) Create a Rot13DecoderRing class. It will have class level string variables encodedText and clearText. Add a canonicalizeString method that takes a string s, replaces all upper-case characters with the equivalent lower case character (A-> a), removes any characters in the string except characters and spaces.
2) Create a rot13Char function that converts a single lower case clear-text character into the equivalent encrypted Rot13 character. Note that modulus arithmetic means that the rot13 function both encrypts clear text characters and decrypts encoded rot13 characters add a rot13 function that accepts a string and returns a rot13 string using the rot13Char method.
This is all done with a Windows Form App in Visual Studio using C#.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started