填空题

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

  执行后输出结果是______。

【参考答案】

9、-4