摘要: static void Main(string[] args) { Console.WriteLine("请录入第一个数组:"); double[,] arr1 = InputArr(); Console.WriteLine("请录入第二个数组:"); double[,] arr2 = InputArr(); int rowsCount = arr1.GetLength(0); int colsCount = arr2.GetLength(1);... 阅读全文
posted @ 2013-12-09 11:50 Everglow 阅读(197) 评论(0) 推荐(0) 编辑