img

Viết chương trình C để in ra hình chữ F

Code tham khảo của chương trình C:

#include <stdio.h>
#include <stdlib.h>

#include <stdio.h>
#include <stdlib.h>

void print_c_pattern(int n, int w) {
int i, j;
int k = 0;
for (i = 0; i < n; i++) {
for (int j = 1; j < w; j++) {
printf("%d", k%10);
k++;
}
for(int j=0; j<=w-2; j++){
printf("%d\n", k%10);
k++;
}
}
printf("\n");
}

int main() {
int n, w;
printf("Enter the number of times: ");
scanf("%d", &n);
printf("Enter the width: ");
scanf("%d", &w);
print_c_pattern(n, w);
return 0;
}