单项选择题

有以下程序
#include<stdio.h>
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");
}
程序运行后的输出结果是______。

A.3344
B.2050
C.3040
D.0304