Advertisement
Guest User

Untitled

a guest
May 30th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. int main()
  5. {
  6.  
  7.  
  8. char username = "user";
  9. char password = "admin";
  10.  
  11. cout << "Username:"; << endl;
  12. cin >> username;
  13. cout << "Password:" << endl;
  14. cin >> password;
  15.  
  16. if(username == username) && if(password == password)
  17. {
  18.     cout << "Login Successfully" << endl;
  19. }
  20.  
  21. else
  22. {
  23.     cout << "Your Username/Password didn't match!" << endl;
  24. }
  25.  
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement