• 循环语句


    1,whie

    2,do while 

    3,for

    以上经常见到,而且很简单不在多说

    偶尔见到:

    4:continue,continue语句经常在for循环中的if语句中见到,见到的时候要知道,判断if的布尔值,如果是true底部时候,则跳过所执行的语句;继续进行变量的操作

    5;switch,多个if的判断;、

           switch(n){

            case1:

              执行代码块 1;

              break;

            case 2:

              执行代码块2;

              break;

            default :

              n与case1和case2执行不同的代码

            }

    6:

  • 相关阅读:
    map-count
    map-count
    map-constructors
    map-constructors
    multiset-find
    multiset-find
    multiset-insert
    C++ string详解
    treap(树堆)
    程序设计语言的变革
  • 原文地址:https://www.cnblogs.com/heixuanyu/p/11216937.html
Copyright © 2020-2023  润新知