 |
|
|
|
SCHOOL SUBJECTS
-
-
-
-
-
-
-
-
-
-
-
-
|
|
|
GRADE LEVELS
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
|
|
|
|
|
Post a New Question | Current Questions | Chat With Live Tutors
Posted by vsu1 on Wednesday, September 9, 2009 at 12:51am.
write a program that maintains two parallel arrays. after th arrays have been loaded the program should behave as a login screen prompting for username and password. the program should respond three output messages. if username does not match one of the values in the username array, then the message should be "username not found". if the user name is found in the username array, but the password does not equal the parallel value in the password array then message should read "username and password do not match". if username is found and the password matches the message should read "access granted"
here is the code i have so far right now im stuck and not sure how to get the arrays to match up. I also dont know how to clear the screen after i have the username and passwords stored.
Dim user(0 To 4) As String
Dim password(0 To 4) As String
Dim input As String
For x As Integer = 0 To 4
Console.Write(" Please enter a username: ")
user(x) = Console.ReadLine()
input = user(x)
Next
Dim input2 As String
For y As Integer = 0 To 4
Console.Write(" Please enter a password: ")
password(y) = Console.ReadLine()
input2 = password(y)
Next
Console.Write(" Please enter in your login ")
Console.Write(" User name ")
Console.ReadLine()
Console.Write(" Password ")
Console.ReadLine()
|
No one has answered this question yet.
Answer this Question
|
|
|
 |