求计算机2级简单计算答案,最好有点注解
main()
{intm=3,n=4,x;
x=-m++;
x=x+8/++n;
printf("%dn",x);
}
程序运行后的输出结果是
A)3B)5C)-1D)-2
x=-m++这块为什么不是先把-3给x,然后加1得-2.++在后面不是应该后加1吗