-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe5.cpp
73 lines (66 loc) · 1.01 KB
/
e5.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//
// Created by martin on 18/01/2022.
//
#include "../std_lib.h"
using namespace std;
int main ()
{
cout << "Enter a string to get its characters classification (q to quit): " << endl;
for (string s ; getline(cin, s) ;)
{
if (s.size() == 1 && tolower(s.at(0) == 'q'))
{
exit(EXIT_SUCCESS);
}
set<char> sc;
for (char &c : s)
{
sc.insert(c);
}
for (char c : sc)
{
cout << c << ": ";
if (isspace(c))
{
cout << "isspace ";
}
if (isalpha(c))
{
cout << "isalpha ";
}
if (isdigit(c))
{
cout << "isdigit ";
}
if (isxdigit(c))
{
cout << "isxdigit ";
}
if (isupper(c))
{
cout << "isupper ";
}
if (isalnum(c))
{
cout << "isalnum ";
}
if (iscntrl(c))
{
cout << "iscntrl ";
}
if (ispunct(c))
{
cout << "ispunct ";
}
if (isprint(c))
{
cout << "isprint ";
}
if (isgraph(c))
{
cout << "isgraph ";
}
cout << endl;
}
}
}