if a=x then if a=y then 这两句怎么用一个if 表示,是用or吗?还是用and 我试了不对(10分)

  • 主题发起人 主题发起人 huait
  • 开始时间 开始时间
H

huait

Unregistered / Unconfirmed
GUEST, unregistred user!
if a=x then if a=y then 这两句怎么用一个if 表示,是用or吗?还是用and 我试了不对
哈,初学,帮帮忙
 
有问题啊,这个a既要等于x又要等于y,你这个x,y相等么?
语法上这么写是可以的
if (a=x and a=y) then
 
应该用and,但是逻辑上有问题
if (a=x) and (a=y) then
 
我靠这也叫问题,不明白了!
 
if (a=x) and (a=y) then
但是不能完全表达你那种含义的
 
...
if (a=x and a=y) then
...
???
 
接受答案了.
 
后退
顶部