Rss & SiteMap
金字塔客服中心 - 专业程序化交易软件提供商 http://www.weistock.com/bbs/
请说明你的表达用意
if xx>=0 or xx <=0.1 then
...
end if
楼上应该是笔误了
//两个条件同时成立用AND,两个条件其中一个成立就行--用OR
if xx>=0 and xx <=0.1 then
and 的是对滴