vfp题,

问题描述:

vfp题,
store .t.to a
a and null
a or null
store .f.to a
a and null
a or null

这是一个计算“逻辑”的代码:
逻辑表达式.t.为真,.f.为假.逻辑就这两个值.
如:(.省略)t and t 值为t;t or t值为t;t and f值为f;t or t值为t;f and f值为f;f or f值为f.
null是空值函数
是计算“?”后面的表达式的值
所以这道题的结果是:
.null.
.t.
.f.
.null.