Group
C# Basic Data Types Overview
Objective
Write a C# program to ask the user for their username and password (both should be strings) and repeat it as many times as necessary until the entered name is "username" and the password is "password".
Example C# Exercise
Show C# Code
using System;
class Program
{
static void Main()
{
string correctUsername = "username"; // Expected username
string correctPassword = "password"; // Expected password
string enteredUsername, enteredPassword;
do
{
// Prompt the user for a username
Console.Write("Enter your username: ");
enteredUsername = Console.ReadLine();
// Prompt the user for a password
Console.Write("Enter your password: ");
enteredPassword = Console.ReadLine();
// Check if the credentials are correct
if (enteredUsername != correctUsername || enteredPassword != correctPassword)
{
Console.WriteLine("Incorrect username or password. Please try again.\n");
}
} while (enteredUsername != correctUsername || enteredPassword != correctPassword);
// Successful login message
Console.WriteLine("\nAccess granted. Welcome!");
}
}
Output
//Example 1 (Incorrect Attempt Followed by Success):
Enter your username: admin
Enter your password: 1234
Incorrect username or password. Please try again.
Enter your username: user
Enter your password: pass
Incorrect username or password. Please try again.
Enter your username: username
Enter your password: password
Access granted. Welcome!
//Example 2 (Success on First Attempt):
Enter your username: username
Enter your password: password
Access granted. Welcome!