问答题
main() { int x=15,y=21,z=0; switch(x%3) { case 0:z++;break; case 1:z++; switch(y%2) {default:z++; case 0:z++;break; } } printf ("%d\n",z); }
1