You are viewing a single comment's thread. Return to all comments →
using namespace std;
int main() { // Complete the code. int n; int a,b; cin>>a>>b; cin>>n;
for(int i=a;i<=b;i++){ if(i>1 && i<=9){ if(i==1) cout<<"one"<<endl; else if(i==2) cout<<"two"<<endl; else if(i==3) cout<<"three"<<endl; else if(i==4) cout<<"four"<<endl; else if(i==5) cout<<"five"<<endl; else if(i==6) cout<<"six"<<endl; else if(i==7) cout<<"seven"<<endl; else if(i==8) cout<<"eight"<<endl; else if(i==9) cout<<"nine"<<endl; } 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 →
include
include
using namespace std;
int main() { // Complete the code. int n; int a,b; cin>>a>>b; cin>>n;
} return 0; }