不是VIP会员,不能显示答案

题目解答

题目:
在Pascal语言中,判断整数a等于0或b等于0或c等于0的正确的条件表达式是( )。
  • A.not ((a<>0) or (b<>0) or (c<>0))
  • B.not ((a<>0) and (b<>0) and (c<>0))
  • C.not ((a=0) and (b=0)) or (c<>0)
  • D.(a=0) and (b=0) and (c=0)
考点:
分析:
解答:
评论:
老师: