Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Application
  4. {
  5. class MainClass
  6. {
  7. public static void Main()
  8. {
  9. Console.WriteLine("Enter password");
  10. string a = Console.ReadLine();//Считывание пароля первый раз
  11. while (a != "root")//считывать пароль, пока пароль не правильный
  12. {
  13. Console.WriteLine("Wrong password, try again");
  14. a = Console.ReadLine();
  15. }
  16. Console.WriteLine("Correct");
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement