수색…


단절

가장 가까운 폐회로 또는 switch 문에서 빠져 나옵니다.

// print the numbers to a file, one per line
for (const int num : num_list) {
    errno = 0;
    fprintf(file, "%d\n", num);
    if (errno == ENOSPC) {
        fprintf(stderr, "no space left on device; output will be truncated\n");
        break;
    }
}

잇다

가장 작은 둘러싸는 루프의 끝으로 건너 뜁니다.

int sum = 0;
for (int i = 0; i < N; i++) {
    int x;
    std::cin >> x;
    if (x < 0) continue;
    sum += x;
    // equivalent to: if (x >= 0) sum += x;
}

해야 할 것

do-while 루프를 소개합니다.

// Gets the next non-whitespace character from standard input
char read_char() {
    char c;
    do {
        c = getchar();
    } while (isspace(c));
    return c;
}

...에 대한

for 루프 또는 C ++ 11 이상에서 범위 기반 for 루프를 소개 합니다.

// print 10 asterisks
for (int i = 0; i < 10; i++) {
    putchar('*');
}

동안

while 루프를 소개합니다.

int i = 0;
// print 10 asterisks
while (i < 10) {
    putchar('*');
    i++;
}

범위 기반 for 루프

std::vector<int> primes = {2, 3, 5, 7, 11, 13};

for(auto prime : primes) {
    std::cout << prime << std::endl;
}


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow