• 2022-06-09
    ‍设a和b均为int型变量,且a = 6,b = 11,则能使值为3的表达式是( )。‌
    A: b % (a % 4)
    B: b % (a - a% 5)
    C: b % a - a % 5
    D: (b % a) - (a % 4)