首页 > 代码库 > 为什么c=2,而不是3呢?

为什么c=2,而不是3呢?

#include<stdio.h>
main()
{
    int a=2,b=-1,c=2;
    if(a<b)
       if(b<0) c=0;
    else c++;
    printf("c=%d",c);
}
为什么c=2,而不是3呢?

实在想了很长时间想不出来,原谅一个c自学者的无奈。求大神帮忙。

为什么c=2,而不是3呢?