首页 > 其他分享 >3.4continue

3.4continue

时间:2022-08-13 11:04:33浏览次数:64  
标签:main SECURE CRT int 3.4 continue total

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>

//从1加到100,奇数求和
int main()
{
    int i, total;
    //for语句中只能有两个分号
    for (i = 1, total = 0; i <= 100; i++)
    {
        if (i % 2 == 0)//如果i是偶数
        {
            continue;//提前结束本轮循环
        }
        total = total + i;
    }
    printf("total=%d\n", total);
    system("pause");
    return 0;
}https://github.com/mzdbxwg/xiao/edit/main/3.4continue.c

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>

//从1加到100,奇数求和
int main()
{
    int i, total;
    //for语句中只能有两个分号
    for (i = 1, total = 0; i <= 100; i++)
    {
        if (i % 2 == 0)//如果i是偶数
        {
            continue;//提前结束本轮循环
        }
        total = total + i;
    }
    printf("total=%d\n", total);
    system("pause");
    return 0;
}

 

标签:main,SECURE,CRT,int,3.4,continue,total
From: https://www.cnblogs.com/xwguo/p/16582312.html

相关文章