-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathexec6-9.cpp
31 lines (29 loc) · 897 Bytes
/
exec6-9.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
#include <iostream>
#include <vector>
#include <string>
using namespace std;
// compose an integer 0~9999 into digits
int main() {
cout << "Please enter a number between 0 and 9999" << endl;
vector<string> units = {"one", "ten", "hundred", "thousand"};
string s;
while (cin >> s) {
try {
int x = stoi(s);
if (x < 0 || x > 9999)
throw out_of_range("");
cout << s << " is ";
for (int i = 0; i < s.size(); ++i) {
cout << s[i] << ' ' << units[s.size() - 1 - i] << (s[i] > '1' ? "s" : "");
cout << (i < s.size() - 1 ? " and " : "\n");
}
}
catch (invalid_argument&) {
cerr << "invalid number" << endl;
}
catch (out_of_range&) {
cerr << "number must be between 0 and 9999" << endl;
}
}
return 0;
}