You are viewing a single comment's thread. Return to all comments →
Here I declared word() function for print the numbers in word.
word()
#include<stdio.h> void word(int x){ switch(x){ 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; default: break; } } int main(){ int a, b, x; scanf("%d\n%d", &a, &b); //for loop starts.. for(int i = a; i<=b ; i++){ if(i > 0 || i<=9){ word(i); }else break; } for(int i = a; i<=b; i++){ if(i>9){ int j = (i%2); if(j == 0){ printf("even\n"); }else if(j == 1){ printf("odd\n"); } else break; } } }
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 →
Printing the condition using for loop
Here I declared
word()
function for print the numbers in word.