4. Password Guess
Ivan Ivanov
Posted on January 20, 2023
using System;
namespace Password_Guess
{
internal class Program
{
static void Main(string[] args)
{
string password = Console.ReadLine();
if (password == "s3cr3t!P@ssw0rd")
{
Console.WriteLine("Welcome");
}
else
{
Console.WriteLine("Wrong password!");
}
}
}
}
💖 💪 🙅 🚩
Ivan Ivanov
Posted on January 20, 2023
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.