Here is Encryptor problem statement from HW2 Q3: Create a Windows Forms Applicat
ID: 3679687 • Letter: H
Question
Here is Encryptor problem statement from HW2 Q3: Create a Windows Forms Application in Visual Basic 2012 to perform simple encryption that proceed as follows a) accept a four digit number from the user b) break-up the number into individual digits c) replace each digit by the “sum of that digit plus 7 modulus 10” and finally create an encrypted new number by d) putting together the four resulting numbers in the “reverse” order to form a new four digit number. E.g.: if digit in the unit’s place of input is 5 then corresponding encrypted digit will be (5+7) MOD 10 = 2. Since, we are required to reverse the order of digits, 2 will now appear in ‘000s place in the final encrypted number. Include a clear button that clears input and output textboxes. Think how you may use various math operators to aid you in this task. CAUTION: Please check your solution with different input data to ensure that the program logic produces correct result under all cases.
Explanation / Answer
/* Try this program*/
Public Class Encryption
End Class
Hope this will help to you!
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.