#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自学者的无奈。求大神帮忙。
时间: 2024-09-29 17:10:12
#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自学者的无奈。求大神帮忙。