s=1;t=1;
if(a>0) {s=s+1;
if(a>b) t=s+1;}
else if(a==b) t=s;
else t=2*s;
printf(“%d\n”,t);
}
若运行时输入5 10 回车,则输出结果是?
例2.分析下列程序的输出结果
main()