Guest User

Untitled

a guest
Apr 7th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. using System;
  2.  
  3. class Vana
  4. {
  5. public static void Main()
  6. {
  7. string Username,Password;
  8. Console.Write();// Error Here
  9. Username = Console.ReadLine();
  10. Console.Write();// Error Here
  11. Password = Console.ReadLine();
  12. if (Username == "ExtremeDevilz" && Password == "123456")
  13. {
  14. Console.WriteLine("The Information Is Correct");
  15. Console.WriteLine("Press A Key To Continue");
  16. Console.ReadKey();
  17. }
  18. else
  19. {
  20. if (Username != "ExtremeDevilz" && Password !="123456")
  21. Console.WriteLine("The Information Is Incorrect");
  22. Console.WriteLine("Press A Key To Continue");
  23. Console.ReadKey();
  24.  
  25.  
  26.  
  27.  
  28. }
  29. }
  30. }
Add Comment
Please, Sign In to add comment