整理一下:
main(){ int a=3,b=4,c=5,d=2; if (a>b){ if (a>c) printf("%d",d+++1); else printf("%d",++d+1); } printf ("%d", d);}
由于a>b为假,所以if里的语句都不执行,最后输出2