Guest User

Untitled

a guest
Dec 15th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. if (userChoice == "ADD")
  2. {
  3. string username = "";
  4. cout << "Enter the user's name." << endl;
  5. cout << "> ";
  6.  
  7. getline(cin,username);
  8. cin.ignore();
  9.  
  10. localLibrary.addAccount(username);
  11. cout << "> ";
  12. cin >> userChoice;
  13. }
  14. else
  15. {
  16. cout << "Invalid command." << endl << endl;
  17. cout << "> ";
  18. cin >> userChoice;
  19. }
  20.  
  21. OUTPUT:
  22. Enter the user's name.
  23. > first last
  24. AccountID# 26 successfully created.
  25. > Invalid command.
  26. > Invalid command.
Add Comment
Please, Sign In to add comment