037. 무조건 분기문 이해하기037. 무조건 분기문 이해하기
Posted at 2010. 11. 13. 23:35 | Posted in Computer/초보자를 위한 C 언어 300제#include <stdio.h> main() { int i; int j; for( i = 1; i <= 100; i++ ) { for( j = 1; j <= 99; j++ ) { printf("%d * %d = %2d\n",i,j, i*j ); if( i == 9 && j == 9 ) goto ku_ku_end; } } ku_ku_end:; }
'Computer > 초보자를 위한 C 언어 300제' 카테고리의 다른 글
039. 배열 이해하기 (0) | 2010.11.13 |
---|---|
038. 문자열 이해하기 (0) | 2010.11.13 |
036. 조건 순환문 이해하기 2(do~while~continue~break) (0) | 2010.11.13 |
035. 조건 순환문 이해하기 1(while~continue~break) (0) | 2010.11.13 |
034. 조건 선택문 이해하기(switch~case~default) (0) | 2010.11.13 |