回 帖 发 新 帖 刷新版面

主题:排序问题

怎样使N个数从小到大排序?(50分悬赏!)

回复列表 (共1个回复)

沙发

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

我来回复

您尚未登录,请登录后再回复。点此登录或注册