学习编程语言语法是次要的,思维是主要的。如何把头脑中的想法变成简洁的代码,至关重要。

    学习循环语句只需要抓住一点——代码执行顺序!

    一、while循环
    可以简单理解为循环版的if语句。if语句是判断一次,如果条件成立,则执行后面的语句;while是每次判断,如果成立,则执行循环体中的语句,否则停止。

    1. #include <iostream>
    2. using namespace std;
    3. int main() {
    4. int i = 0;
    5. while (i < 10) {
    6. cout << i << endl;
    7. i++;
    8. }
    9. return 0;
    10. }

    练习:求1~100中所有数的立方和。

    1. #include <iostream>
    2. using namespace std;
    3. int main() {
    4. int i = 1, sum = 0;
    5. while (i <= 100) {
    6. sum += i * i * i;
    7. i++;
    8. }
    9. cout << sum << endl;
    10. return 0;
    11. }

    练习:求斐波那契数列的第n项。f(1) = 1, f(2) = 1, f(3) = 2, f(n) = f(n-1) + f(n-2)

    1. #include <iostream>
    2. using namespace std;
    3. int main() {
    4. int n;
    5. cin >> n;
    6. int a = 1, b = 1, i = 1;
    7. while (i < n) {
    8. int c = a + b;
    9. a = b;
    10. b = c;
    11. i++;
    12. }
    13. cout << a << endl;
    14. return 0;
    15. }

    死循环:循环永久执行,无法结束。我们要避免写出死循环。

    1. #include <iostream>
    2. using namespace std;
    3. int main() {
    4. int x = 1;
    5. while (x == 1) puts("!");
    6. return 0;
    7. }

    二、do while循环
    do while循环不常用。
    do while语句与while语句非常相似。唯一的区别是,do while语句限制性循环体后检查条件。不管条件的值如何,我们都要至少执行一次循环。

    1. #include <iostream>
    2. using namespace std;
    3. int main() {
    4. int x = 1;
    5. while (x < 1) {
    6. cout << "x!" << endl;
    7. x++;
    8. }
    9. int y = 1;
    10. do {
    11. cout << "y!" << endl;
    12. } while (y < 1);
    13. return 0;
    14. }

    三、for循环
    基本思想:把控制循环次数的变量从循环体中剥离。

    1. for (init-statement ; condition ; expression) {
    2. statement;
    3. }
    • init-statement可以是声明语句、表达式、空语句,一般用来初始化循环变量;
    • condition是条件表达式,和while中的条件表达式作用一样;可以为空,空语句表示true
    • expression一般负责修改循环变量,可以为空。
    1. #include <iostream>
    2. using namespace std;
    3. int main() {
    4. for (int i = 0; i < 10; i++) {
    5. cout << i << endl;
    6. }
    7. return 0;
    8. }

    练习:求1~100中所有数的立方和。
    练习:求斐波那契数列的第n项。f(1) = 1, f(2) = 1, f(3) = 2, f(n) = f(n-1) + f(n-2)

    init-statement可以定义多个变量,expression也可以修改多个变量。

    例如求 1 * 10 + 2 * 9 + 3 * 8 + 4 * 7 + 5 * 6

    1. #include <iostream>
    2. using namespace std;
    3. int main() {
    4. int sum = 0;
    5. for (int i = 1, j = 10; i < j; i++, j--) {
    6. sum += i * j;
    7. }
    8. cout << sum << endl;
    9. return 0;
    10. }

    四、跳转语句

    1. break
      可以提前从循环中退出,一般与if语句搭配。
      例题:判断一个大于1的数是否是质数:
    1. #include <iostream>
    2. using namespace std;
    3. int main() {
    4. int n;
    5. cin >> n;
    6. bool is_prime = true;
    7. for (int i = 2; i < n; i++)
    8. if (n % i == 0) {
    9. is_prime = false;
    10. break;
    11. }
    12. if (is_prime) cout << "yes" << endl;
    13. else cout << "no" << endl;
    14. return 0;
    15. }
    1. continue
      可以直接跳到当前循环体的结尾。作用与if语句类似。
      例题:求1~100中所有偶数的和。
    1. #include <iostream>
    2. using namespace std;
    3. int main() {
    4. int sum = 0;
    5. for (int i = 1; i <= 100; i++) {
    6. if (i % 2 == 1) continue;
    7. sum += i;
    8. }
    9. cout << sum << endl;
    10. return 0;
    11. }

    五、多层循环

    1. #include <iostream>
    2. using namespace std;
    3. int main() {
    4. for (int i = 0, k = 1; i < 10; i++) {
    5. for (int j = 0; j < 10; j++, k++) {
    6. cout << k << ' ';
    7. }
    8. cout << endl;
    9. }
    10. return 0;
    11. }

    练习:打印1~100中的所有质数

    1. #include <iostream>
    2. using namespace std;
    3. int main() {
    4. for (int i = 2; i <= 100; i++) {
    5. bool is_prime = true;
    6. for (int j = 2; j < i; j++) {
    7. if (i % j == 0) {
    8. is_prime = false;
    9. break;
    10. }
    11. }
    12. if (is_prime) cout << i << endl;
    13. }
    14. return 0;
    15. }

    练习:输入一个n,打印n阶菱形。n是奇数。

    n = 9时的结果:

    1. *
    2. ***
    3. *****
    4. *******
    5. *********
    6. *******
    7. *****
    8. ***
    9. *
    1. #include <iostream>
    2. using namespace std;
    3. int main() {
    4. int n;
    5. cin >> n;
    6. int cx = n / 2, cy = n / 2;
    7. for (int i = 0; i < n; i++) {
    8. for (int j = 0; j < n; j++)
    9. if (abs(i - cx) + abs(j - cy) <= n / 2)
    10. cout << '*';
    11. else cout << ' ';
    12. cout << endl;
    13. }
    14. return 0;
    15. }