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 main()
{
int a, b;
scanf("%d\n%d", &a, &b);
// Complete the code.
int i ;
for(i=a;i<=b;i++){
if(i>=1 && i<=9){
switch(i){
case 1:
printf("one\n");
break;
case 2:
printf("two\n");
break;
case 3:
printf("three\n");
break;
case 4:
printf("four\n");
break;
case 5:
printf("five\n");
break;
case 6:
printf("six\n");
break;
case 7:
printf("seven\n");
break;
case 8:
printf("eight\n");
break;
case 9:
printf("nine\n");
break;
}
}
else{
if(i>9){
if(i%2==0){
printf("even\n");
}
else{
printf("odd\n");
}
}
}
}
return 0;
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
For Loop in C
You are viewing a single comment's thread. Return to all comments →
include
include
include
include
int main() { int a, b; scanf("%d\n%d", &a, &b); // Complete the code. int i ; for(i=a;i<=b;i++){ if(i>=1 && i<=9){ switch(i){ case 1: printf("one\n"); break; case 2: printf("two\n"); break; case 3: printf("three\n"); break; case 4: printf("four\n"); break; case 5: printf("five\n"); break; case 6: printf("six\n"); break; case 7: printf("seven\n"); break; case 8: printf("eight\n"); break; case 9:
printf("nine\n"); break; } } else{ if(i>9){ if(i%2==0){ printf("even\n"); } else{ printf("odd\n"); } } } } return 0; }