diff options
Diffstat (limited to 'week03/exercise05.cpp')
| -rw-r--r-- | week03/exercise05.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/week03/exercise05.cpp b/week03/exercise05.cpp new file mode 100644 index 0000000..0facfdb --- /dev/null +++ b/week03/exercise05.cpp @@ -0,0 +1,24 @@ +#include <iostream> + +int main() { + int countLower = 0, countUpper = 0, countDigit = 0; + char input; + std::cin >> input; + while (input != '$') { + if (input == '@') { + return 0; + } + // Грешка ли е, че тук има "if" вместо "else if"? + if ('a' <= input && input <= 'z') { + countLower++; + } + else if ('A' <= input && input <= 'Z') { + countUpper++; + } + else if ('0' <= input && input <= '9') { + countDigit++; + } + std::cin >> input; + } + std::cout << "Lowercase: " << countLower << " Uppercase: " << countUpper << " Digit: " << countDigit << std::endl; +} |
