You are viewing a single comment's thread. Return to all comments →
Hello there! My code isnt the most optimal, but i used my knowledge of switch case and solved this:
int main(){ int a, b; cin >> a >> b ; for(int i=a; i<=b; i++){ if(i <= 9 && i >= 1){ switch(i){ case 1: cout << "one" << endl; break; case 2: cout << "two" << endl; break; case 3: cout << "three" << endl; break; case 4: cout << "four" << endl; break; case 5: cout << "five" << endl; break; case 6: cout << "six" << endl; break; case 7: cout << "seven" << endl; break; case 8: cout << "eight" << endl; break; case 9: cout << "nine" << endl; break; default: break; } }else{ if(i%2==0){ cout << "even" << endl; }else{ cout << "odd" << endl; } } } return 0; }
Seems like cookies are disabled on this browser, please enable them to open this website
For Loop
You are viewing a single comment's thread. Return to all comments →
Hello there! My code isnt the most optimal, but i used my knowledge of switch case and solved this: