We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
int n = stoi(ltrim(rtrim(n_temp)));
// Write your code here
switch (n){
case 1:
cout <<"one";
break;
case 2:
cout<< "two";
break;
case 3:
cout<< "three";
break;
case 4:
cout<< "four";
break;
case 5:
cout<< "five";
break;
case 6:
cout<< "six";
break;
case 7:
cout<< "seven";
break;
case 8:
cout <<"eight";
break;
case 9:
cout <<"nine";
break;
default:
cout<< "Greater than 9";
}
return 0;
Conditional Statements
You are viewing a single comment's thread. Return to all comments →
include
using namespace std;
string ltrim(const string &); string rtrim(const string &);
int main() { string n_temp; getline(cin, n_temp);
}
string ltrim(const string &str) { string s(str);
}
string rtrim(const string &str) { string s(str);
}