单项选择题

下列程序的输出结果是______。
main()
int i=3;
switch(i)
case1:
case2:printf("%d",i);
case3:
case4:break;
default: printf ("OK");

A.0
B.3
C.OK
D.没有任何输出