diff options
Diffstat (limited to 'CamelCase')
| -rw-r--r-- | CamelCase/CamelCase.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/CamelCase/CamelCase.cpp b/CamelCase/CamelCase.cpp deleted file mode 100644 index bbcef3a..0000000 --- a/CamelCase/CamelCase.cpp +++ /dev/null @@ -1,16 +0,0 @@ -#include<bits/stdc++.h> - -using namespace std; - -int main() { - string s; - int count = 0; - cin >> s; - for(auto ch : s) { - if(isupper(ch)) { - count++; - } - } - cout << count + 1 << '\n'; - return 0; -} |
