有以下程序
#include <stdio.h>
void 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");
}
程序运行后的输出结果是( )
2 0 5 0
3 3 4 4
3 0 4 0
0 3 0 4