题目内容
设变量已正确定义,程序段(1)与程序段(2)等价。程序段(1):switch (ch){case '-':minus++; break;case '0' : case '1' : case '2' : case '3' : case '4' :case '5' : case '6' : case '7' : case '8' : case '9' :digit ++;break;default:other ++; break;}程序段(2):if(ch == '-'){minus++;}else if(ch >= '0' && ch <= '9'){digit ++;}else {other ++;}
查看答案
搜索结果不匹配?点我反馈