Advertisement
MATI__

Untitled

Apr 28th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int login;
  6. int main()
  7. {
  8. cout<<"podaj login";
  9. cin>>login;
  10.  
  11.  
  12. {
  13. if(login==1337)
  14. cout<<"login poprawny";
  15.  
  16. }
  17.  
  18.  
  19.  
  20. {
  21. if(login!=1337)
  22. cout<<"login niepoprawny";
  23. }
  24.  
  25.  
  26.  
  27.  
  28.  
  29. return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement