• 2022-06-19
    设4位整数作为年份x,如果年份能被400整除,则为闰年;如果年份能被4整除但不能被100整除也为闰年。按照说明判断其是否为闰年的条件表达式为____。
    A: x%400==0 or (x%4==0 and not x%100==0)
    B: x%400==0 and x%4==0 and not x%100==0
    C: x%400==0 or x%4==0 and x%100==0
    D: x%400==0 or x%4==0 or x%100==0
  • 举一反三