desislava_topuzakova

Untitled

May 1st, 2020
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. using System;
  2.  
  3. namespace passwordGuess
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9.  
  10. string guess = Console.ReadLine();
  11. string password = ("s3cr3t!P@ssw0rd");
  12.  
  13. if (guess == password)
  14. {
  15. Console.WriteLine("Welcome");
  16. }
  17. else
  18. {
  19. Console.WriteLine("Wrong password!");
  20. }
  21.  
  22.  
  23.  
  24.  
  25. }
  26. }
  27. }
Add Comment
Please, Sign In to add comment