-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathy26to9.cpp
75 lines (65 loc) · 1.29 KB
/
y26to9.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
74
75
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
using namespace std;
const char g_data[] = {
'2', '2', '2',
'3', '3', '3',
'4', '4', '4',
'5', '5', '5',
'6', '6', '6',
'7', '7', '7', '7',
'8', '8', '8',
'9', '9', '9', '9'
};
char trans(char c)
{
return g_data[c - 'a'];
}
int main(int argc, char *argv[])
{
// assume sorted
ifstream ifs;
istream *pis = NULL;
if( argc == 2 )
{
ifs.open(argv[1]);
pis = &ifs;
}
else if( argc == 1 )
{
pis = &cin;
}
if( argc > 2 )
{
cerr << "Too Many Arguments.\n";
return 1;
}
if( !pis->good() )
{
cerr << "Can not Open File.\n";
return 1;
}
string line;
while(getline(*pis, line))
{
bool ill = false;
for(size_t i=0; i<line.length(); ++i)
{
if(line[i] == '\t' || line[i] == ' ')
{
//only trans the first field
break;
}
if(line[i] >= 'a' && line[i] <= 'z')
line[i] = trans(line[i]);
else
ill = true;
}
if(ill)
cerr << line << " has char out of 26 keys.\n";
cout << line << "\n";
}
return 0;
}