Vb编程求1---15之间的偶数怎么写

2025-04-23 16:48:03
推荐回答(1个)
回答1:

sub command1_click()
dim i as integer
for i=1 to 15
if i mod 2 =0 then print i;
next
end sub