Question: Read the problem set for Programming Assignment 1.Create an outline in plain English. Place this outline in either //line comments or /*block*/comments. For programming assignment
Read the problem set for Programming Assignment 1.Create an outline in plain English. Place this outline in either //line comments or /*block*/comments. For programming assignment 1, you will place the C++ code under the corresponding lines of code. Place these comments in a file called yourlastnameFirstinitial (like: augustinetPA1cpp) Example: /* NAME: Dr. Augustine CLASS: CSCI1410 DESCRIPTION: The program provides two different types of encryption and decryption of a word. This program provides a menu of 5 items including Encrypt entire word rotation Decrypt entire word rotation Encrypt each letter rotation Decrypt each letter rotation Exit STATUS: Not running, just an outline */ int main() { //menu //1. Encrypt entire word rotation //2. Decrypt entire word rotation //3. Encrypt each letter rotation //4. Decrypt each letter rotation //5. Exit //if not 1-5 give error message //Always loop to top (except #5) return 0: } Read the problem set for Programming Assignment 1.Create an outline in plain English. Place this outline in either //line comments or /*block*/comments. For programming assignment 1, you will place the C++ code under the corresponding lines of code. Place these comments in a file called yourlastnameFirstinitial (like: augustinetPA1cpp) Example: /* NAME: Dr. Augustine CLASS: CSCI1410 DESCRIPTION: The program provides two different types of encryption and decryption of a word. This program provides a menu of 5 items including Encrypt entire word rotation Decrypt entire word rotation Encrypt each letter rotation Decrypt each letter rotation Exit STATUS: Not running, just an outline */ int main() { //menu //1. Encrypt entire word rotation //2. Decrypt entire word rotation //3. Encrypt each letter rotation //4. Decrypt each letter rotation //5. Exit //if not 1-5 give error message //Always loop to top (except #5) return 0: }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
