-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflower.cpp
113 lines (98 loc) · 1.39 KB
/
flower.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// Kaitlyn Lavan
// October 13, 2017
// 1-800-Flowers, string - built in functions
#include <iostream>
using namespace std;
int main()
{
//variables
string phone;
int i, len;
char token;
//input
cout << "Enter phone (1-800-FLOWERS) : ";
getline(cin, phone);
//processing
len = phone.length();
for (i=0;i < len;i++)
{
token = phone.at(i);
switch (token)
{
case 'A':
case 'a':
case 'B':
case 'b':
case 'C':
case 'c':
cout << "2";
break;
case 'E':
case 'e':
case 'D':
case 'd':
case 'F':
case 'f':
cout << "3";
break;
case 'G':
case 'g':
case 'H':
case 'h':
case 'I':
case 'i':
cout << "4";
break;
case 'J':
case 'j':
case 'K':
case 'k':
case 'L':
case 'l':
cout << "5";
break;
case 'M':
case 'm':
case 'N':
case 'n':
case 'O':
case 'o':
cout << "6";
break;
case 'P':
case 'p':
case 'Q':
case 'q':
case 'R':
case 'r':
case 'S':
case 's':
cout << "7";
break;
case 'T':
case 't':
case 'U':
case 'u':
case 'V':
case 'v':
cout << "8";
break;
case 'W':
case 'w':
case 'X':
case 'x':
case 'Y':
case 'y':
case 'Z':
case 'z':
cout << "9";
break;
default:
cout << token;
break;
} //end switch
} // end for loop
//output a linefeed
cout << endl;
return 0;
}