题目内容
阅读程序,该程序的输出结果是【1】。#include void main( ){int k=0; char c='A';do{switch(c++){case 'A': k++; break;case 'B': k--;case 'C': k+=2; break;case 'D': k=k%2; break;case 'E': k=k*10; break;default: k=k/3;}k++;}while(c<'G');printf("%d\n", k);}
查看答案
搜索结果不匹配?点我反馈
更多问题