自增与自减运算符 自增与自减运算符 例如: int x =0;printf("x=%d \n",x++);printf("x=%d \n",++x);//结果为:x=0x=2 //例题:int a=3;b=4,计算a+b%(a+b)/a+a*b-b=12