Question: IN JAVA PLEASE THANKS!! F) Problem 1 A company that wants to send data over the Internet has asked you to write a program that


IN JAVA PLEASE THANKS!!
F) Problem 1 A company that wants to send data over the Internet has asked you to write a program that will encrypt it so that it may be transmitted more securely. All the data is transmitted as four- digit integers. Your application should read a four-digit integer entered by the user and encrypt it as follows: Replace each digit with the result of adding 7 to the digit and getting the remainder after dividing the new value by 10. Then swap the first digit with the third, and swap the second digit with the fourth. Then print the encrypted integer. Your application should also allow the user to enter an encrypted four-digit integer and then decrypt it (by reversing the encryption scheme) to form the original number. For all problems, it is expected that you employ good programming practices, such as naming your identifiers appropriately and using methods to break apart your program so that it is easy to read and debug. PA1 Rubric Criteria Ratings Pts p1: Application is a public class declared in Application.java 0.0 pts 1.0 pts Full Marks No 1.0 pts Marks p1: Encrypter is a public class declared in Encrypter.java 0.0 pts 5.0 pts Full Marks No 5.0 pts Marks p1: Decrypter is a public class declared in Decrypter.java 1.0 pts Full Marks 0.0 pts No Marks 1.0 pts p1: The Encrypter class contains a single class method called encrypt 1.0 pts Full Marks 0.0 pts No Marks 1.0 pts p1: The encrypt method is implemented correctly (e.g. 1234 encrypts to 0189) 0.0 pts 1.0 pts Full Marks No 1.0 pts Marks p1: The decrypt method is implemented correctly (e.g. 0189 decrypts to 1234) 1.0 pts Full Marks 0.0 pts No Marks 1.0 pts p1: The Application class contains the main method 1.0 pts 0.0 pts Full No Marks Marks 1.0 pts p1: The main method reads a 4 digit integer from the user 1.0 pts Full Marks 0.0 pts No Marks 1.0 pts p1: The main method encrypts the user's value using Encrypter.encrypt 0.0 pts 1.0 pts Full Marks No 1.0 pts Marks p1: The main method prints the encrypted value to standard output 1.0 pts 0.0 pts Full No Marks Marks 1.0 pts p1: The main method decrypts the user's value using Decrypter.decrypt 1.0 pts 0.0 pts Full Marks Marks No 1.0 pts p1: The main method prints the decrypted value to standard output 1.0 pts Full Marks 0.0 pts No Marks 1.0 pts
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
