vf中怎么用do while语句把一到二十表示出来

2025-04-14 04:40:47
推荐回答(1个)
回答1:

下面的程序是每行输出一个数(从1~20),共20行:
set talk off
x=1
do while x<=20
? x
x=x+1
enddo