Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include<string>
  4.  
  5. using namespace std;
  6.  
  7. bool check_password(string password){
  8.  
  9. if (password == "mypass") return true;
  10.  
  11. else return false;}
  12.  
  13. int main(int argument_count, char* arguments[]) {
  14.  
  15. cout << "what the FUCK";
  16.  
  17. system("PAUSE");
  18. return 0;
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement