摘要: 题目不难,总结如下:1.冒泡排序:冒泡排序 1 class Program 2 { 3 static void Main(string[] args) 4 { 5 string temp=Console.ReadLine(); 6 string[] tempArray=temp.Split(' '); 7 int[] arry = new int[tempArray.Length]; 8 9 for (int i = 0; i < tempArray.... 阅读全文
posted @ 2013-04-22 21:50 MarkSun 阅读(218) 评论(0) 推荐(0) 编辑