填空题

有以下程序:
main()
int n=0,m=1,x=2;
if(!n)x-=1;
if(m)x-=2;
if(x)x-=3;
printf("%d\n",x);

执行后输出的结果是 [10]

【参考答案】

[10] -4