Guest User

Untitled

a guest
Aug 10th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication1
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. Console.WriteLine("Please Enter Your UserName");
  13. String UserName;
  14. if(UserName == "Glitch")
  15. {
  16. Console.Write("Welcome");
  17. }
  18. else
  19. Console.WriteLine("Your not Glitch");
  20. Console.WriteLine("Please Enter Your Password");
  21. Console.ReadLine();
  22. String Password;
  23. if (Password == "Password")
  24. {
  25. Console.Write("Logged In Succesful");
  26. }
  27. else
  28. Console.Write("Epic Fail");
  29. Console.ReadLine();
  30. }
  31. }
  32. }
Add Comment
Please, Sign In to add comment