c_cpp 对于循环

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 对于循环相关的知识,希望对你有一定的参考价值。

int i;
for (i = 0; i < 10; i++) {
    printf("%d\n", i);
}

int array[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
int sum = 0;
int i;

for (i = 0; i < 10; i++) {
    sum += array[i];
}

/* sum now contains a[0] + a[1] + ... + a[9] */
printf("Sum of the array is %d\n", sum);

以上是关于c_cpp 对于循环的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 检测链表中循环或循环的起始节点

c_cpp for循环

c_cpp 循环链接清单实施

c_cpp 无限循环1

c_cpp 循环

c_cpp 循环数组