摘要: using System;namespace ConsoleApplication1{ class Program { /// <summary> /// ylb:冒泡法排序(倒水法) /// </summary> /// <param name="args"></param> static void Main(string[] args) { int[] array = { 12, 1, 5, 20, 4 }; int temp = 0; for (int i = 0; i < array.Length; i++) { 阅读全文
posted @ 2012-04-08 22:04 |▍花舞花落泪 ╮ 阅读(92) 评论(0) 推荐(0) 编辑