Advertisement
desislava_topuzakova

02. Password

Feb 4th, 2024
464
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. string username; //потребителско име
  7. cin >> username;
  8.  
  9. string password; //парола
  10. cin >> password;
  11.  
  12. //повтаряме: въвеждаме парола за вход
  13. //стоп: въведената парола == password
  14. //продължаваме: въведената парола != password
  15.  
  16. string enteredPassword;
  17. cin >> enteredPassword;
  18.  
  19. while (enteredPassword != password)
  20. {
  21. cin >> enteredPassword;
  22. }
  23.  
  24. //enteredPassword == password
  25. cout << "Welcome " << username << "!";
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement