diff options
| author | Syndamia <kamen@syndamia.com> | 2023-11-02 15:00:22 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2023-11-02 15:00:22 +0200 |
| commit | d09b1a288ae51fe2e141676948d225296f2f7d72 (patch) | |
| tree | 7e3666545c04c4602be5374859001bf03e98f4b3 /week03/exercise03.cpp | |
| parent | fbbe586d25b1ebaf66fe2e92e1986bb5debf961d (diff) | |
| download | upp-2023-solutions-d09b1a288ae51fe2e141676948d225296f2f7d72.tar upp-2023-solutions-d09b1a288ae51fe2e141676948d225296f2f7d72.tar.gz upp-2023-solutions-d09b1a288ae51fe2e141676948d225296f2f7d72.zip | |
[w3] Added solutions
Diffstat (limited to 'week03/exercise03.cpp')
| -rw-r--r-- | week03/exercise03.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/week03/exercise03.cpp b/week03/exercise03.cpp new file mode 100644 index 0000000..bc7879b --- /dev/null +++ b/week03/exercise03.cpp @@ -0,0 +1,19 @@ +#include <iostream> + +int main() { + char input; + std::cin >> input; + while (input != '^') { + if (('A' <= input && input <= 'Z') || + ('a' <= input && input <= 'z')) { + std::cout << "letter" << std::endl; + } + else if ('0' <= input && input <= '9') { + std::cout << "digit" << std::endl; + } + else { + std::cout << "other" << std::endl; + } + std::cin >> input; + } +} |
