淘宝开店实名认证照片:c语言中if的详细使用?

来源:百度文库 编辑:杭州交通信息网 时间:2024/04/29 13:04:03

if(condition) expression_true;

if(condition)
{
expression_true;
}
[else
{
expression_false;
}
]

if(condition)
{
expression_true;
}
else if(condition2)
{
expression_true2;
}
else if(...)
{
...
}
[else
{
...
}
]

和英语上差不多的