关于++x的问题求教
											#include <stdio.h>int main(void)
{
int x=5;
int n,m,l;
l=(++x)+(++x)+(++x);
n=(++x)+(++x);
m=(--x)+(--x);
printf("%d\n%d\n%d\n",l,n,m);
return 0;
}
上面的程序,输出结果是22,20,16。有点不理解,求指点。
	    2019-10-24 15:39
  
	    2019-10-24 16:00
  
	    2019-10-24 16:16
  
	    2019-10-24 21:44
  
	    2019-10-25 08:54