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.
- Prepare
- C
- Conditionals and Loops
- For Loop in C
- Discussions
For Loop in C
For Loop in C
Sort by
recency
|
822 Discussions
|
Please Login in order to post a comment
////The solution without for loop
include
int a,b; void assign() {
switch (a) { 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: if (a > 9 && a % 2 == 0) { printf("even\n"); } else { printf("odd\n"); } break; } } int main() { int i = 0; scanf("%d\n%d", &a, &b); while ( a <= b) { assign(); a++; }
}
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; }
Good Code
For loops are such a powerful tool in programming! They allow you to repeat actions efficiently, making your code more concise and readable. cricbet99club