Facebook
From Dzik, 7 Years ago, written in C++.
Embed
Download Paste or View Raw
Hits: 254
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int PIN;
  6.  
  7. int main();
  8. {
  9.     cout << "Witaj w naszym banku!";
  10.     cout<<"Podaj numer PIN:";
  11.     cin >> PIN;
  12.    
  13.     if(PIN=="6637")
  14.     {
  15.         cout<<"Poprawny PIN";
  16.     }
  17.     else
  18.     {
  19.         cout<<"Niepoprawny PIN";
  20.     }
  21.     return 0;
  22. }
  23.