码迷,mamicode.com
首页 > 编程语言 > 详细

【C#学习笔记】数组使用

时间:2017-08-27 16:09:18      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:rgs   style   ++   nbsp   ica   log   static   ogr   read   

using System;

namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            //int[] a=new int[3];    //一维数组
            int[,] a = new int[3,3];
            for (int i = 0; i < 3;i++ )
            {
                for (int j = 0; j < 3;j++ )
                {
                    a[i,j] = i + j;
                    Console.Write(a[i, j]);
                    Console.Write("  ");
                }
                Console.WriteLine();
            }
            Console.Read();
        }
    }
}

 

【C#学习笔记】数组使用

标签:rgs   style   ++   nbsp   ica   log   static   ogr   read   

原文地址:http://www.cnblogs.com/tiandsp/p/7440401.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!