Advertisement
Icakman

Untitled

Oct 19th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. using System.Text;
  2. using System.Threading.Tasks;
  3.  
  4. namespace ConsoleApp2
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. string pass = "s3cr3t!P@ssw0rd";
  11. int p = int.Parse(Console.ReadLine());
  12. if(p = pass)
  13. {
  14. Console.WriteLine("Welcome");
  15. }
  16. else
  17. {
  18. Console.WriteLine("Wrong password!");
  19. }
  20. }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement