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
if(n == 1){
cout<<"one";
}
else if (n==2){
cout<<"two";
}
else if (n==3){
cout<<"three";
}
else if (n==4){
cout<<"four";
}
else if (n==5){
cout<<"five";
}
else if (n==6){
cout<<"six";
}
else if (n==7){
cout<<"seven";
}
else if (n==8){
cout<<"eight";
}
else if (n==9){
cout<<"nine";
}
else{
cout<<"Greater than 9";
}
return 0;
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Conditional Statements
You are viewing a single comment's thread. Return to all comments →
int main() { string n_temp; getline(cin, n_temp);
}