2016年10月23日
摘要: 在介绍冒泡算法之前,首先给大家一段代码: public static void main(String[] args) { int[] scores={99,78,100,80,90}; int temp; for (int i = 0; i < scores.length-1; i++) { fo 阅读全文
posted @ 2016-10-23 21:48 祈言 阅读(955) 评论(0) 推荐(0)