Guest User

Untitled

a guest
Jun 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3. #include <cstring>
  4.  
  5. using namespace std;
  6.  
  7. int main(int argc, char *argv[])
  8. {
  9. char *x;
  10. cout<<"Wprowadź wyraz: ";
  11. cin>>*x;
  12. if ((strlen(x)<5) && (strlen(x)>12))
  13. {
  14. cout<<"OK";
  15. }
  16. else
  17. {
  18. cout<<"BLAD";
  19. }
  20. system("PAUSE");
  21. return EXIT_SUCCESS;
  22. }
Add Comment
Please, Sign In to add comment