This C# Program Illustrates how User Authentication is Done. Here The program accepts the username and password. It checks whether the password is correct with respect to the username.
Here is the output of the C# Program:
using System;
class program
{
public static void Main()
{
char[] password = new char[10];
char[] username = new char[10];
char ch;
int i;
Console.WriteLine("Enter User name < 3 characters > : ");
for (int x = 0; x < 8; x++)
{
username[x] = Convert.ToChar(Console.Read());
}
Console.WriteLine("Enter the password < any 8 characters>: ");
for (i = 0; i < 8; i++)
{
ch = Convert.ToChar(Console.Read());
password[i] = ch;
ch = '*';
Console.WriteLine("{0}", ch);
}
password[i] = '\0';
Console.WriteLine("\n Your Password is :");
for (i = 0; i < 8; i++)
{
Console.Write("{0}", password[i]);
}
Console.ReadLine();
Console.ReadLine();
}
}
Enter User name < 3 characters > : s r i Enter the password < any 8 characters>: * s * * * r * * * i * Your Password is : s r i
No comments:
Post a Comment