nvnnaidenov

PasswordGuess - Chapter 3.0

Feb 10th, 2022
1,147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. //Task 009, Chapter 3.0
  2. using System;
  3.  
  4. public class PasswordGuess
  5. {
  6.     static void Main()
  7.     {
  8.         string pass = Console.ReadLine();
  9.  
  10.         if(pass == "s3cr3t!P@ssw0rd")
  11.         {
  12.             Console.WriteLine("Welcome");
  13.         }
  14.         else
  15.         {
  16.             Console.WriteLine("Wrong password!");
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment