当前位置:首页 > C#教程 > C#进阶

C#数组声明

using System;

namespace MyApplication {

   class MyClass {

      static void Main(string[] args) {
         // n is an array of 5 integers
         int [] a = new int[5];
         int i,j;

         /* initialize elements of array a */
         for ( i = 0; i < 5; i++ ) {
            a[ i ] = i + 10;
         }

         /* output each array element's value */
         for (j = 0; j < 5; j++ ) {
            Console.WriteLine("Element[{0}] = {1}", j, a[j]);
         }
         Console.ReadKey();
      }
   }
}

【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!