Guest User

Untitled

a guest
May 20th, 2014
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1.     bool czyRosnacy(string napis){
  2.       for(int i=1; i<napis.length()-1; ++i){
  3.         if(napis[i+1] <= napis[i])
  4.         return false;  
  5.       }
  6.      
  7.       return true;
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment