Question: C# ONLY C# ONLY C# ONLY CSE1322 Assignment 2 Background: For this assignment, you will code a simple encryption application. The application encrypts words by
C# ONLY C# ONLY C# ONLY



CSE1322 Assignment 2 Background: For this assignment, you will code a simple encryption application. The application encrypts words by mapping a list of the twenty-six alphabetic characters to a list of twenty-six corresponding symbols using the lists indices. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 ! @#$&-+?.730100: symbols list 4 5 0 1 2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 abcdefghijklmnopqrstu w x y z alphabets list V For example, the word Elvis, would encrypt as follows: E -> ^ -> + V>: i -> ) S -> ] So, Elvis would encrypt to: +;)] Your task: You will start with the following class definition: C# Java using System; using System.Collections.Generic; import java.util.Scanner, import java.util.ArrayList; class Encryption List
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
