for문을 이용한 구구단 출력

5단

#include <stdio.h>
int main() {
int i;

for (i = 1; i <= 9; i++) {
printf("5 x %d = %d\n", i, 5 * i);
}

return 0;
}

구구단

#include <stdio.h>
int main() {
int i, j;

for (i = 1; i <= 9; i++) {
printf("%d단\n", i);

for (j = 1; j <= 9; j++) {
printf("%d x %d = %d\n", i, j, i * j);
}

printf("\n");
}

return 0;
}
Total views

댓글

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×