(5)C++ 循环

(5)C++ 循环,第1张

概述    一、for循环 for (int i = 0; i < 5; i++) { cout << "abc"<< endl; } 或 for (int i = 5; i; i--) { cout << "abc" << endl; }   二、while循环 int a = 0; whi

   

一、for循环
    for (int i = 0; i < 5; i++)    {        cout << "abc"<< endl;    }

    for (int i = 5; i; i--)    {        cout << "abc" << endl;    }

 

二、while循环
    int a = 0;    while (a<10)    {        a++;        cout << a << endl;    }

 

三、do while循环

 

    int a = 0;    do    {        a++;        cout << a << endl;    } while (a<5);

 

四、基于范围 for循环

 对数组或容器类 vector array

    int a[] = { 3,6,8,7 };    for (int i:a)    {        cout << i << endl;    }

能够修改数组内容

    int a[] = { 3,7 };    for (int &i:a)    {        cout << i << endl;    }

循环内初始化

    for (int i: { 3,7 })    {        cout << i << endl;    }

 

五、循环和输入

 

 

六、嵌套循环和二维数组 总结

以上是内存溢出为你收集整理的(5)C++ 循环全部内容,希望文章能够帮你解决(5)C++ 循环所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1211565.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存