Къде е проблемът ?
using System;
namespace PasswordGuess
{
class Program
{
static void Main(string[] args)
{
string password = Console.ReadLine();
if (password == "s3cr3t!P@ssword")
{
Console.WriteLine("Welcome!");
}
else if (password != "s3cr3t!P@ssword")
{
Console.WriteLine("Wrong password!");
}
}
}
}
Благодаря ти колега .