Answer to Question #327224 in C# for chi

Question #327224

6.4.

Write a simple encryption program using string functions which apply the substitution method. Here is the given Substitution Table.

Substitution Table:

A *

E $

I /

O +

U -­‐

Sample input/output dialogue:

Enter message: meet me at 9:00 a.m. in the park

Encrypted message: m$$t m$ *t 9:00 *.m. /n th$ p*rk


1
Expert's answer
2022-04-11T14:01:13-0400
internal class Program
    {
        static void Main()
        {
            Console.Write("Enter message: ");
            string str = Console.ReadLine();
            string code = "";
            string letter = str.ToUpper();
            for (int i = 0; i < str.Length; i++)
            {
                switch (letter[i])
                {
                    case 'A':
                        {
                            code += "*";
                            break;
                        }
                    case 'E':
                        {
                            code += "$";
                            break;
                        }
                    case 'I':
                        {
                            code += "/";
                            break;
                        }
                    case 'O':
                        {
                            code += "+";
                            break;
                        }
                    case 'U':
                        {
                            code += "-";
                            break;
                        }
                    default:
                        {
                            code += str[i];
                            break;
                        }
                }
            }
                Console.WriteLine($"Coded value: {code}");
                Console.ReadKey();
            }
    }

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS