4.19 LAB: Password modifier Many user-created passwords are simple and easy to guess. Write a program that takes a simpl
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
4.19 LAB: Password modifier Many user-created passwords are simple and easy to guess. Write a program that takes a simpl
4.19 LAB: Password modifier Many user-created passwords are simple and easy to guess. Write a program that takes a simple password and makes it stronger by replacing characters using the key below, and by appending "!" to the end of the input string. • i becomes 1 • a becomes @ • m becomes M • B becomes 8 •s becomes $ Ex: If the input is: mypassword 4.19.1: LAB: Password modifier 0/10 LabProgram.java Load default template... public static void main(String[] args) { /* Type your code here. */ } the output is: Myp@$$word! 399766.2211294.qx3zqy7 LAB ACTIVITY 1 import java.util.Scanner; 3 public class LabProgram { 6