Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么在 QB64 中,
'$dynamic x&(5) = x&(5) + 1 x&(5) = x&(5) + 1 x&(5) = x&(5) + 1 x&(5) = x&(5) + 1 x&(5) = x&(5) + 1
工作正常,而
'$dynamic for g = 1 to 5 x&(5) = x&(5) + 1 next g
x&(5) = x&(5) + 1在?处给出“重复定义”错误
x&(5) = x&(5) + 1