Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. // ConsoleApplication3.cpp : Defines the entry point for the console application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include <iostream>
  6. #include "string"
  7.  
  8.  
  9. using namespace std;
  10. string username, password;
  11.  
  12.  
  13. int main()
  14. {
  15. cout << "enter your username:";
  16. cin >> username;
  17. cout << "enter your password:";
  18. cin >> password;
  19.  
  20. if ((username == "admin") && (password == "nasal"));
  21. {
  22. cout << "Login was sucessful";
  23. }
  24.  
  25. else
  26. {
  27. cout << "wrong username or password";
  28. }
  29. return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement