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.
for(;a- > 64;)
我在上面的行中收到以下错误:
'>' 标记之前的预期主表达式
如何解决此错误?
您的编译抱怨是因为
是无效的语法。有效的是(取决于您实际想要实现的目标):
for(;a-- > 64;)
或者
for(;a > 64;)