c语言中switch在这个代码中咋执行的

    int i = 0;
    while (i < 3)
    {
        switch (i++)
        {
            case 0: printf("fat ");
            case 1: printf("hat ");
            case 2: printf("cat ");
            default:printf("Oh no!");
        }
        putchar('\n');
    }

不应该先是i=0,然后0<3, 0+1=1, 执行case1以及以后的语句嘛


掩饰的mask
浏览 1000回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP