請輸入查詢關鍵詞:
判斷char型變量ch是否為大寫字母的正確表達式是?
選項A:('A' <=ch<='Z'
選項B:(ch> = 'A')&(ch<='Z')
選項C:(ch>='A' )&&(ch<='Z')
選項D:('A' < = ch)AND('Z'> = ch)
正確答案:選項C