急求一个VB的问题!高手请进。
dimx(1to6)asintegerdimsasinteger,easintegerdimtasintegers=Lbound(x)e=Ubound(x)fori=st...
dim x(1 to 6) as integer
dim s as integer,e as integer
dim t as integer
s=Lbound(x)
e=Ubound(x)
for i=s to e
for j=i to e-1
If x(i) < x(j + 1) Then
t = x(i)
x(i) = x(j + 1)
x(j + 1) = t
End If
Next j
Next i
for each c in x
print "x("i")=";x(i)
next c
问题就在for i=s to e
for j=i to e-1
If x(i) < x(j + 1) 到底怎么解释啊?两个数比较嘛,j=i to e-1 代表什么啊?哪个数啊? j+1呢? 我思索了很久不好理解,请高手赐教。本人感激不尽! 展开
dim s as integer,e as integer
dim t as integer
s=Lbound(x)
e=Ubound(x)
for i=s to e
for j=i to e-1
If x(i) < x(j + 1) Then
t = x(i)
x(i) = x(j + 1)
x(j + 1) = t
End If
Next j
Next i
for each c in x
print "x("i")=";x(i)
next c
问题就在for i=s to e
for j=i to e-1
If x(i) < x(j + 1) 到底怎么解释啊?两个数比较嘛,j=i to e-1 代表什么啊?哪个数啊? j+1呢? 我思索了很久不好理解,请高手赐教。本人感激不尽! 展开
3个回答
力控科技
2024-12-19 广告
2024-12-19 广告
第一步:看XPE是什么版,如果内核是英文版,需要安装一个MUI包,即语言包。第二步:进入控制面板-区域和语言选项,如下图,在区域选项中,选择“中文(中国)”,位置也为“中国”,在高级选项中,代码页转换表中,将所有的“简体中文”都选择上。...
点击进入详情页
本回答由力控科技提供
展开全部
相邻两个数比较,如果后面的比前面的大,两个数就交换位置,先把前边的书存到t,后边的数到前边,后边的数在变成t,就是原来在前的那个书的值,就这样咯。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
说到底就是一个倒排序,数组里面的数据从大到
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询