摘要: 第一题,数字统计,很water的题目,要是有人傻乎乎的用桶排,我也没办法,直接上代码。View Code 1 Program Count(Input,Output); 2 Type 3 Numbertype = Array[0..200000] Of Longint; 4 Var 5 N1,I1,S : Longint; 6 A : Numbertype; 7 Procedure Swap(Var A1,A2: Longint); 8 Var 9 T:Longint;10 Begin11 T:=A1;12 A1:=A2;13 A2:=T;... 阅读全文
posted @ 2011-10-16 18:14 Codinginging 阅读(2360) 评论(2) 推荐(4) 编辑