是一道要求用冒泡排序方法在两位数的数字中随机抽选10位数字排序,但排序后我的顺序还是错的,检查不出错误。。。
还望指教
for i=1 to 9
for j =i+1 to 10
if a(i)<a(j) then
t=a(i)
a(i)=a(j)
a(j)=t
end if
next j
next i