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.
/* I am sharing my solution to this challenge. Any comments are welcome, as they help me improve. Thank you. */#include<stdio.h>intmain(){inta,b;scanf("%d\n%d",&a,&b);for(shorti=a;i<=b;i++){switch(i){case1:printf("one\n");break;case2:printf("two\n");break;case3:printf("three\n");break;case4:printf("four\n");break;case5:printf("five\n");break;case6:printf("six\n");break;case7:printf("seven\n");break;case8:printf("eight\n");break;case9:printf("nine\n");break;default:if(i%2==0){printf("even\n");}else{printf("odd\n");}break;}}return0;}
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 →