The correct expression to determine whether the char variable s is a lowercase letter is ( ).
A、’a’<=s<=’z’;
B、(s>=’a’)&(s<=’z’);
C、(s>=’a’)&&(s<=’z’);
D、(’a’<=s)and(’z’>=s)
发布时间:2025-10-09 15:50:25
A、’a’<=s<=’z’;
B、(s>=’a’)&(s<=’z’);
C、(s>=’a’)&&(s<=’z’);
D、(’a’<=s)and(’z’>=s)