if(boolean_expression 1)
{
/* 当布尔表达式 1 为真时执行 */
}
else if( boolean_expression 2)
{
/* 当布尔表达式 2 为真时执行 */
}
else
{
/* 当上面条件都不为真时执行 */
}
追问因为我是考试的题目,感觉直接按上面的写上去不能得满分呀
追答#include
int main ()
{
/* 局部变量定义 */
double a ,b;
/* 检查布尔条件 */
if( a =1) {
b=3*a-11 ;
}
else {
b=2*a-1 ;
}
return 0;
}
{y=x}
else if (x>=1){
if (x<10)
{y=2x-1}
else
{y=3x-11}
}