判断char型变量s是否为小写字母的正确表达式是
’a’ <= s<=’z'
(s>='a’) & (s<=’z’)
(s>=’a') && (s<=’z’)
(’a'<=s) and (’z’>=s)
发表评论