摘要: /// /// 交换两个整数的值 /// /// 数1 /// 数2private static void Swap(ref int aa,ref int bb) { int temp; temp = bb; bb = aa; aa = temp; }// 冒泡排序 class Program... 阅读全文
posted @ 2015-03-12 12:52 张三的歌丶 阅读(160) 评论(0) 推荐(0) 编辑