You are viewing a single comment's thread. Return to all comments →
using namespace std; int main (){ int n ;
cin>> n ;
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 if ( n >9 ) { cout <<"Greater than 9";
return 0;
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 →
include
using namespace std; int main (){ int n ;
cin>> n ;
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 if ( n >9 ) { cout <<"Greater than 9";
}
}