Guest User

Untitled

a guest
Feb 9th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. string username;
  2. string password;
  3.  
  4. cout << "Register!n" << endl;
  5. cout << "Username: ";
  6. cin >> username;
  7. cout << "Password: ";
  8. cin >> password;
  9.  
  10. string newAcc = username;
  11. newAcc.append(".txt");
  12.  
  13. ofstream newAccount(newAcc.c_str());
  14. newAccount << username << ' ' << password << endl;
  15. newAccount.close();
Add Comment
Please, Sign In to add comment