Advertisement
desislava_topuzakova

02. Password

Jul 1st, 2023
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _02._Password
  4. {
  5. internal class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. string username = Console.ReadLine(); //потребителско име
  10. string password = Console.ReadLine(); //парола
  11.  
  12. //повтаряме: въвеждаме парола
  13. //стоп: въведената парола == password
  14. //продължаваме: въведената парола != password
  15.  
  16. string enteredPassword = Console.ReadLine();
  17.  
  18. while (enteredPassword != password)
  19. {
  20. //грешно въведена парола
  21. enteredPassword = Console.ReadLine();
  22. }
  23.  
  24. Console.WriteLine($"Welcome {username}!");
  25. }
  26. }
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement