PART B. Write a program, Passwords, that contains an array of five names and another array of five passwords(your choice). Your program should ask the user to enter a name and a password. If the user enters the correctname with its related password, grant access (e.g. display “Access granted!”). IF the user enters the wrongname/password (can be either or both), allow the user to re-try only once. You don’t have to use nested loops.If the user still cannot enter the correct name/password, display the following: “Sorry, yourusername/password does not match our database. Contact the administrator.”   Scanner in = new Scanner(System.in);// Arrays for usernames and corresponding passwords.// The username at index 0 corresponds to the password at index 0,// the username at index 1 corresponds to the password at index 1,// and so on.// You can customize the login info by modifying the arrays below:String[] usernames = {"user1", "user2", "user3", "user4", "user5"};String[] passwords = {"pass1", "pass2", "pass3", "pass4", "pass5"};// Complete the program...

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter6: Arrays
Section: Chapter Questions
Problem 9RQ
icon
Related questions
Question

PART B. Write a program, Passwords, that contains an array of five names and another array of five passwords
(your choice). Your program should ask the user to enter a name and a password. If the user enters the correct
name with its related password, grant access (e.g. display “Access granted!”). IF the user enters the wrong
name/password (can be either or both), allow the user to re-try only once. You don’t have to use nested loops.
If the user still cannot enter the correct name/password, display the following: “Sorry, your
username/password does not match our database. Contact the administrator.”

 

Scanner in = new Scanner(System.in);

// Arrays for usernames and corresponding passwords.
// The username at index 0 corresponds to the password at index 0,
// the username at index 1 corresponds to the password at index 1,
// and so on.
// You can customize the login info by modifying the arrays below:
String[] usernames = {"user1", "user2", "user3", "user4", "user5"};
String[] passwords = {"pass1", "pass2", "pass3", "pass4", "pass5"};

// Complete the program...

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT