/* Note:Your choice is C IDE */ #include "stdio.h" void main() { int a,b; a=0; b=(++a)+(++a)+(++a); printf("%d",b); } //为啥子在 tc2.0下是9 //在tc3.0和vc6.0是7啊