早教吧 育儿知识 作业答案 考试题库 百科 知识分享

a=1to3i=1toac=a(i,ubound(a,2))fork=ubound(a,2)-1to1step-1a(i,k+1)=a(i,k)nexta(i,1)=c红色字

题目详情
a=1to3 i=1toa c=a(i,ubound(a,2)) for k=ubound(a,2)-1to1 step-1 a(i,k+1)=a(i,k) next a(i,1)=c 红色字
▼优质解答
答案和解析
for a=1 to 3
for i=1 to a
c=a(i,ubound(a,2))
for k=ubound(a,2)-1 to 1 step-1
a(i,k+1)=a(i,k)
next
a(i,1)=c
next
next