Menu

[solved] – Question 9814

Console.WriteLine(“Please enter your card number”);
string crdnum = Console.ReadLine();
int c = Convert.ToInt32(crdnum);

Console.WriteLine(“PLease enter your password”);
string psswrd = Console.ReadLine();
int p = Convert.ToInt32(psswrd);
int counter = 0;

do
{
if (c = i)
{
//This is where i want to compare the user input with the array but im stuck!!
}
} while (counter < 3

Expert Answer


OR


Leave a Reply

Your email address will not be published. Required fields are marked *