Write a program that does the following:

Create a structure that has the fields listed above
Read the records from the file and store each record into a structure
Create a list or array that is of the structure data type and holds each record of the file in the structure data type
Use a menu format that allows the user to make the following choices:
List Winning team for a particular year
List Venue for a particular year
Count how many times a particular team has won
Count how many times a particular team was in a super bowl
Quit
make sure to use C# visual studio 2017

Question 2 — C# Programming please use a form

The Caesar cipher is one of the earliest known and simplest ciphers. It is a type of substitution cipher in which each letter in the plaintext is ‘shifted’ a certain number of places down the alphabet. For example, with a shift of 1, A would be replaced by B, B would become C, and so on. The method is named after Julius Caesar, who apparently used it to communicate with his generals.

To pass an encrypted message from one person to another, it is first necessary that both parties have the ‘key’ for the cipher, so that the sender may encrypt it and the receiver may decrypt it. For the Caesar cipher, the key is the number of characters to shift the cipher alphabet.

Here is a quick example of the encryption and decryption steps involved with the Caesar cipher. The text we will encrypt is ‘defend the east wall of the castle, by sending 50 more soldiers there’, with a shift (key) of 2.

plaintext:defend the east wall of the castle, by sending 50 more soldiers there

ciphertext: FGHGPF VJG GCUV YCNN QH VJG ECUVNG, DA UGPFKPI 50 OQTG UQNFKGTU VJGTG

Write a C# program that allows the user to enter the following information into text boxes:

Whether they want to encrypt a message or decrypt a message
The key value (1 – 20)
The message to encrypt or decrypt

Sample Solution

This question has been answered.

Get Answer