#include <stdio.h>
void main(){
    int i, j, n=0;
    for(i=0; i<10; i++){  //i=0~9
        for(j=0; j<10; j++){  //j=0~9
            if(j>5) continue;  //j=6~9라면 continue
            n++;          //j=0~5라면 n++;  n=6
        }
        if(i>6) break;  //i=7~9라면 종료
    }
    printf(" %d\n", n);  //6 출력
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: