Advertisement
Guest User

Untitled

a guest
Jan 9th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. string PIN;
  5. int main()
  6. {
  7. cout << "Witamy w testowym banku!" << endl;
  8. cout << "Prosze podac PIN : ";
  9. cin >> PIN;
  10. if(PIN==2934)
  11. {
  12. cout << "Poprawny PIN!" << endl;
  13. }
  14. else
  15. {
  16. cout << "Niepoprawny PIN!" << endl;
  17. }
  18. return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement