填空题

有以下程序:
#include <stdio.h>
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】

【参考答案】

-4