主题:排序问题
qbasic爱好者
[专家分:10] 发布于 2009-08-06 16:54:00
怎样使N个数从小到大排序?(50分悬赏!)
回复列表 (共1个回复)
沙发
mickey980522 [专家分:150] 发布于 2009-08-06 17:33:00
input n
dim a(n)
for i=1 to n
input a(i)
next i
for i=1 to n-1
for j=i+1 to n
if a(i)>a(j) then swap a(i),a(j)
next j
next i
for i=1 to n
print a(i);
next i
end
我来回复