zoukankan      html  css  js  c++  java
  • C#中foreach,for,while,DoWhile循环对比

    foreach循环

    // An array of integers
    int[] array1 = {0, 1, 2, 3, 4, 5};

    foreach (int n in array1)
    {
        System.Console.WriteLine(n.ToString());
    }


    // An array of strings
    string[] array2 = {"hello", "world"};

    foreach (string s in array2)
    {
        System.Console.WriteLine(s);
    }

    for循环

    // An array of integers
    int[] array1 = {0, 1, 2, 3, 4, 5};

    for (int i=0; i<6; i++)
    {
        System.Console.WriteLine(array1[i].ToString());
    }


    // An array of strings
    string[] array2 = {"hello", "world"};

    for (int i=0; i<2; i++)
    {
        System.Console.WriteLine(array2[i]);
    }

    while循环

    // An array of integers
    int[] array1 = {0, 1, 2, 3, 4, 5};
    int x = 0;

    while (x < 6)
    {
        System.Console.WriteLine(array1[x].ToString());
        x++;
    }


    // An array of strings
    string[] array2 = {"hello", "world"};
    int y = 0;

    while (y < 2)
    {
        System.Console.WriteLine(array2[y]);
        y++;
    }

    Do while循环

    // An array of integers
    int[] array1 = {0, 1, 2, 3, 4, 5};
    int x = 0;

    do
    {
        System.Console.WriteLine(array1[x].ToString());
        x++;
    } while(x < 6);


    // An array of strings
    string[] array2 = {"hello", "world"};
    int y = 0;

    do
    {
        System.Console.WriteLine(array2[y]);
        y++;
    } while(y < 2);

  • 相关阅读:
    es index template
    什么是元类
    Normal Data Structure Tricks
    Python 学习笔记
    点分治
    人类智慧贪心
    「JOI 2021 Final」地牢 3
    【美团杯2020】魔塔
    CF917D 的垃圾做法
    【ULR #2】Picks loves segment tree IX
  • 原文地址:https://www.cnblogs.com/Luouy/p/1328896.html
Copyright © 2011-2022 走看看