Blogger Information
Blog 6
fans 0
comment 0
visits 2779
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
C++循环
一枝彩笔
Original
587 people have browsed it

C++ 循环

while 循环    当给定条件为真时,重复语句或语句组。它会在执行循环主体之前测试条件。    

for 循环    多次执行一个语句序列,简化管理循环变量的代码。    

do...while 循环    除了它是在循环主体结尾测试条件外,其他与 while 语句类似。    

嵌套循环    您可以在 while、for 或 do..while 循环内使用一个或多个循环。    


break 语句

  • 当 break 语句出现在一个循环内时,循环会立即终止,且程序流将继续执行紧接着循环的下一条语句。

  • 它可用于终止 switch 语句中的一个 case。

continue 语句

continue 语句有点像 break 语句。但它不是强迫终止,continue 会跳过当前循环中的代码,强迫开始下一次循环。

#include <iostream>using namespace std;
int main (){
  // 局部变量声明
  int a = 10;

  // do 循环执行
  do
  {
      if( a == 15)
      {
         // 跳过迭代
         a = a + 1;
         continue;
      }
      cout << "a 的值:" << a << endl;
      a = a + 1;
  }while( a < 20 );

  return 0;}

a 的值: 10a 的值: 11a 的值: 12a 的值: 13a 的值: 14a 的值: 16a 的值: 17a 的值: 18a 的值: 19

goto 语句

goto 语句允许把控制无条件转移到同一函数内的被标记的语句。

#include <iostream>using namespace std;
int main (){
  // 局部变量声明
  int a = 10;

  // do 循环执行
  LOOP:do
  {
      if( a == 15)
      {
         // 跳过迭代
         a = a + 1;
         goto LOOP;
      }
      cout << "a 的值:" << a << endl;
      a = a + 1;
  }while( a < 20 );

  return 0;}


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post