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

C#数组零索引

using System;

namespace ArrayApplication {
   class MyArray {
      static void Main(string[] args) {
         int [] n = new int[5];
         int i,j;

         /* begings from index 0 */
         for ( i = 0; i < 5; i++ ) {
            n[ i ] = i + 5;
         }

         for (j = 0; j < 5; j++ ) {
            Console.WriteLine("Element[{0}] = {1}", j, n[j]);
         }
         Console.ReadKey();
      }
   }
}

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