Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. string PIN;
  6.  
  7. int main()
  8. {
  9. cout << "Witaj w naszym banku!" << endl;
  10. cout << "Wprowadz swoj numer PIN" << endl;
  11. cin >> PIN;
  12.  
  13. if (PIN == "7733") // prawda lub falsz
  14. {
  15. cout << "Poprawny PIN" << endl;
  16. }
  17. else
  18. cout << "Niepoprawny PIN" << endl;
  19.  
  20. return 0;
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement