码迷,mamicode.com
首页 > 其他好文 > 详细

break 与 continue的使用区别

时间:2014-09-22 23:36:33      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   使用   ar   strong   sp   on   c   

//break是结束整个循环体,continue是结束单次循环比方说:

while(x++ < 10)
{
    if(x == 3)
    {
        break;
    }
    printf("%d\r\n", x);
}
结果是输出  1 2   就退出了整个while循环
但是如果使用continue
while(x++ < 10)
{
    if(x == 3)
    {
        continue;
    }
    printf("%d\r\n", x);
}
结果是:1 2 4 5 6 7 8 9 10  可见他仅仅是不输出3,因为他结束了本次循环



break 与 continue的使用区别

标签:style   color   os   使用   ar   strong   sp   on   c   

原文地址:http://blog.csdn.net/qq_17242957/article/details/39483135

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!