题目内容
有以下程序,其输出结果为。#include int main(){int a[ ]={2,3,5,4},i;for(i=0;i<4;i++){switch(i%2){case 0:switch(a[i]%2){case 0:a[i]++;break;case 1:a[i]--; }break;case 1:a[i] = 0;}}for(i=0;i<4;i++)printf(" %d",a[i]);printf("\n");return 0;}
查看答案
搜索结果不匹配?点我反馈
更多问题