如题,以下程序的输出结果为?
#include <stdio.h> main(){ int a=8,b=6,m=1; switch (a%4) //a%4结果等于0 执行case 0语句 { case 0:m++; break; //执行mm原值为1 m++后为 m为2 break结束当前语句 ,switch (b%3)不执行 case 1:m++; switch (b%3) { default:m++; case 0:m++;break; } } printf("%d",m); //printf输出m的值为2 }