else总是与最近的if配对
故如下代码结果不显示
#include<stdio.h>
int main()
{
int a=0;
int b=2;
if(a==1)
if(b==2)
printf("hehe\n");
else
printf("haha\n");
return 0;
}
除非加上括号
{标签:易错,int,else,printf,main,hehe From: https://blog.51cto.com/u_15899086/5945591
if(b==2)
printf("hehe\n");
}