Contact: aviboots(AT)netvision.net.il
39,932 questions
51,869 answers
573 users
#include <iostream> #include <algorithm> int main() { std::string s = "cppjavanodejsphp"; bool b = all_of(s.begin(), s.end(), ::islower); std::cout << b; } /* run: 1 */