Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- string haslo="delta";
- cout<<"Podaj haslo: ";
- string podane;
- cin>>podane;
- if(podane==haslo) cout<<"masz dostep"<<endl;
- else cout<<"Bledne haslo"<<endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement