Board logo

标题: 第4章的习题希望有人回答 [打印本页]

作者: ghg1010    时间: 2010-6-21 13:59     标题: 第4章的习题希望有人回答

protected void Page_Load(object sender, EventArgs e)
    {
        int [ ,] salary = new int[12,31];
        int n=0;


        for (int i = 0; i < 12; i++)
        {
            for (int j = 0; j < 31; j++)
            {

                salary[i, j] = n++;
                Response.Write(salary [i,j]+"<br>");
                Hashtable ht = new Hashtable();
                ht.Add("i,j", salary[i, j]);
                foreach (DictionaryEntry de in ht)
                {
                    Response.Write(de.Value );
                    Response.Write(de.Key );
               
                }
            
            }


            
        
        }


    }
1。我不知道用forech 怎么循环。
2、我想输出response.write("salary[{0},{ 1}]={2}",i,j,salary[i, j]);这个样子的老是说write没有4个参数。应该怎么写。
3、哈希表应该怎么存储ht.Add("i,j", salary[i, j]);
就像ht.add("0,0",0)这样的存储。
作者: dorient    时间: 2010-6-21 22:28

在同样问题里面,前面已经回答了。谢谢!

http://www.wanjuanchina.net/thread-370-1-1.html




欢迎光临 万卷图书 (http://wanjuanchina.net/) Powered by Discuz! 7.0.0