You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

19 lines
415 B
C++

#include <algorithm>
#include <iostream>
#include <algorithm>
#include <string>
#include <numeric>
#include <cctype>
using std::string, std::cin, std::cout, std::endl;
bool strIsUpper(const string& s) {
return std::accumulate(s.begin(), s.end(), true, [](bool res, char c) {return res && (!isalpha(c) || isupper(c)); });
}
int main() {
string s;
getline(cin, s);
cout << strIsUpper(s) << endl;
}