c++入门教程–-6循环语句

2021-04-07 15:34:00 浏览数 (1)

c 入门教程–-6循环语句

while循环

代码语言:javascript复制
#include <iostream>
using namespace std;
 
int main ()
{
   
   // 局部变量声明
   int a = 1;

   // while 循环执行
   while( a < 10 )
   {
   
       cout << "a 的值:" << a << endl;
       a  ;
   }
 
   return 0;
}

for循环

代码语言:javascript复制
#include <iostream>
using namespace std;
 
int main ()
{
   
   // for 循环执行
   for( int a = 10; a < 20; a = a   1 )
   {
   
       cout << "a 的值:" << a << endl;
   }
 
   return 0;
}

dowhile循环

代码语言:javascript复制
#include <iostream>
using namespace std;
 
int main ()
{
   
   // 局部变量声明
   int a = 10;

   // do 循环执行
   do
   {
   
       cout << "a 的值:" << a << endl;
       a = a   1;
   }while( a < 20 );
 
   return 0;
}

上面是循环的3个例子,个人觉得用的最多的是第二个for,所以先弄懂for怎么写,举一反三。自己多编写一下。 //上面的例子自己复制下来,在编译器跑一下看看。分析一下结果。

0 人点赞