#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
usingnamespace std;
inlinevoid keep_window_open() {char ch; cin >> ch;}
// program to convert spelled out numbers to digits
int main()
{
cout << "Spell out a number from 0-4 to see the cooresponding digit: ";
string num;
cin >> num;
cout << endl;
if (num == 'zero')
cout << "0\n";
elseif (num == 'one')
cout << "1\n";
elseif (num == 'two')
cout << "2\n";
elseif (num == 'three')
cout << "3\n";
elseif (num == 'four')
cout << "4\n";
else
cout << "Not a number I know. Stupid Computer!\n";
}
it keeps saying error: no match for 'operator==' in 'num == 2053468783' and
warning: character constant too long for its type. it keeps saying this for each if/if else statment. cant figure it out. hope u can help. thanks