Chinaunix首页 | 论坛 | 博客
  • 博客访问: 503423
  • 博文数量: 130
  • 博客积分: 3581
  • 博客等级: 中校
  • 技术积分: 1200
  • 用 户 组: 普通用户
  • 注册时间: 2005-02-18 10:51
文章分类

全部博文(130)

文章存档

2016年(1)

2015年(8)

2014年(6)

2013年(2)

2012年(9)

2011年(16)

2010年(5)

2009年(4)

2008年(2)

2007年(6)

2006年(50)

2005年(21)

我的朋友

分类:

2006-08-28 09:25:06

方法一:

string[] str = new string[2];

        str[0]  = "a";

        str[1] =  "b";

        Response.Write(str[0].ToString());

        Response.Write(str[1].ToString());

 

方法二:

   string[] str = new string[] { "x", "xx", "xxx" };

        for (int i = 0; i < str.Length; i++)

        {

            Response.Write(str[i].ToString());

            Response.Write("
"
);

        }

        Response.Write("
"
);

 

方法三:

     int[,] str= new int[,] { { 1, 2, 3 }, { 2, 4, 5 }, { 4, 5, 6 } };

   

        Response.Write("

");

        for (int i = 0; i <= 2; i++)

        {

            Response.Write("

");

            for (int x = 0;  x <= 2;  x++)

            {

                Response.Write("

");

             

            }

            Response.Write("

");

         

        }

        Response.Write("

" + str[i, x].ToString() + "
");

方法三:

int[][] intx = new int[2][];

        intx[0] = new int[] { 1, 2, 3, 4 };

        intx[1] = new int[] { 5, 6, 7, 8 };

 

        Response.Write("

");

        for (int i = 0; i < 2; i++)

        {

            Response.Write("

");

            for (int x = 0; x < 4; x++)

            {

                Response.Write("

");

 

            }

            Response.Write("

");

 

        }

        Response.Write("

" + intx[i][x].ToString() + "
");

阅读(2006) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~