if와 continue를 이용해 특정 구구단 출력


if와 continue를 이용해 특정 구구단 출력

1 2 3 4 5 6 7 8 9 10 11 12 13 14 #include <stdio.h> void main() { int dan, gop; for (dan = 2; dan <= 9; dan++) { if (dan == 2 || dan == 4 || dan == 6 || dan == 8) continue; for (gop = 1; gop <= 9; gop++) { printf("%dX%d=%d\t", dan, gop, dan*gop); } printf("\n"); } Colored by Color Scripter cs...

if와 continue를 이용해 특정 구구단 출력에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.



원문링크 : if와 continue를 이용해 특정 구구단 출력