码迷,mamicode.com
首页 > 编程语言 > 详细

C++编程基础一 32-break和continue语句

时间:2018-07-21 17:18:18      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:climits   定义   cout   class   应用程序   入口   基础   code   style   

 1 // 32-break和continue语句.cpp: 定义控制台应用程序的入口点。
 2 //
 3 
 4 #include "stdafx.h"
 5 #include <iostream>
 6 #include <climits>
 7 #include <string>
 8 #include <array>
 9 #include <math.h>
10 using namespace std;
11 
12 int main()
13 {
14     for (int i = 1; i < 10; i++)
15     {
16         if (i % 3 == 0)
17         {
18             break;    //跳出当前循环,后续循环也不执行。
19         }
20         cout << i << endl; //1 2
21     }
22     
23     for (int i = 1; i < 10; i++)
24     {
25         if (i % 3 == 0)
26         {
27             continue; //不执行当前循环继续执行下一次循环(中断当前循环,继续执行下次循环)。
28         }
29         cout << i << endl; //1 2 4 5 7 8
30     }
31 
32     int t;
33     cin >> t;
34     return 0;
35 }

 

 

 

 

C++编程基础一 32-break和continue语句

标签:climits   定义   cout   class   应用程序   入口   基础   code   style   

原文地址:https://www.cnblogs.com/uimodel/p/9346608.html

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