// tsk.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"


int main()
{

    while (1)
    {
        if (1)
        {
            continue;
        }
        printf("continue 使用\n");
    }


    return 0;
}

 

相关文章:

  • 2021-05-18
  • 2022-12-23
  • 2022-12-23
  • 2021-06-19
  • 2021-10-21
  • 2021-11-20
  • 2021-12-25
猜你喜欢
  • 2022-12-23
  • 2021-11-06
  • 2022-12-23
  • 2021-07-21
  • 2018-10-24
  • 2021-06-01
相关资源
相似解决方案