格式1:if(条件表达式) int x = 3;
{ if(x>1)
执行语句; {
} sop{"yes"};
}
格式2:if(条件表达式) int a = 3;
{ if(a>1)
执行语句; {
}else sop{"yes"};
{ }else
执行语句; {
} sop{"no"};
}
格式3:if(条件表达式) int y = 3;
{ if(y>1)
执行语句; {
}else if(条件表达式) sop{"yes"};
{ }else if(y>2)
执行语句; {
} sop{"yes"};
。。。。(重复else if) }
else else
{ {
执行语句; sop{"no"};
} }
|
|