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

VB中dimaasinteger,如果在某个事件中想写这样的代码,text1(a).forcolor=***,但是a的范围是但是a的范围是fora=0to15和fora=18to20,现在我这样写的:fora=0to15text(a).forecolor=***nextfora=18to20text(a).

题目详情
VB中 dim a as integer ,如果在某个事件中想写这样的代码,text1(a).forcolor=***,但是a 的范围是
但是a的范围是 for a=0 to 15 和 for a =18 to 20,现在我这样写的:
for a=0 to15
text(a).forecolor=***
next
for a =18 to 20
text(a).forecolor=***
next
如果变量a需要断开分了很多段就要写很多次,能简化吗
后面的***是相同的参数
▼优质解答
答案和解析
可以这样简化,但意义似乎不大
for a=0 to20
if a=18 then
text(a).forecolor=***
endif
next