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
|
#include "\Users\User\Desktop\C++\std_lib_facilities.h"
vector<string> numbersspoken = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"};
vector<int> numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
int wordtodigit(string word){
for (int i = 0; i < numbersspoken.size(); ++i){
if (numbersspoken[i] == word){
return i;
}
}
}
int recognizeint (int number){
for (int i = 0; i < numbers.size(); ++i){
if (numbers[i] == number){
return i;
}
}
}
int main(){
int ab, bb = 0;
int a, b = 0;
char symbol1 = ' ';
string spokenstring1;
string spokenstring2;
cout<<"Let's do some simple calculations with numbers (0-9) or words (zero-nine)\n"
<<"Input either two single digit numbers (eg.4(space)5) or the words of two single digit numbers (eg.four(space)five) followed by an operator:\n"
<<"* (multiply)\t+ (addition)\t/ (division)\t- (subtract)\n"
<<"eg.4 5 * (4 multiplied by 5) OR four five * (4 multiplied by 5)\n";
while (cin){
if (cin>>spokenstring1>>spokenstring2>>symbol1){
a = wordtodigit(spokenstring1);
b = wordtodigit(spokenstring2);
}
else if (cin>>ab>>bb>>symbol1) {
a = recognizeint(ab);
b = recognizeint(bb);
}
else {
cout<<"Please re-read the instructions.\n";
}
switch (symbol1){
case '*' :
cout<<"The product of "<<a<<" multiplied by "<<b<<" equals "<<a*b<<".\n";
break;
case '+' :
cout<<"The sum of "<<a<<" and "<<b<<" equals "<<a+b<<".\n";
break;
case '/' :
cout<<a<<" divided by "<<b<<" equals "<<a/b<<".\n";
break;
case '-' :
cout<<a<<" minus "<<b<<" equals "<<a-b<<".\n";
break;
default:
cout<<a<<symbol1<<b<<"? Please re-read the instructions.\n";
break;
}
}
}
|