以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  公式模型编写问题提交  (http://weistock.com/bbs/list.asp?boardid=4)
----  否一样  (http://weistock.com/bbs/dispbbs.asp?boardid=4&id=73285)

--  作者:aliyun
--  发布时间:2014/12/19 10:00:11
--  否一样
 

ss:=not(a and b and c );

sss:=not(a) and not(b) and not(c);

两者是否一样? 测试结果不同


--  作者:jinzhe
--  发布时间:2014/12/19 10:03:50
--  

ss:=not(a and b and c );

这个只要abc里面一个不成立就行

sss:=not(a) and not(b) and not(c);

这个要abc同时不成立

 


--  作者:aliyun
--  发布时间:2014/12/21 14:37:00
--  

ss3:=not(a or b or c );

是什么意思?


--  作者:pyd
--  发布时间:2014/12/21 21:34:18
--  

a,b,c都不成立
ss3:not(a or b or c );        a,b,c都不成立时ss3输出是1