哪里出错了啊
#include <stdio.h>int main()
{
int height = 185;
if (height>=180)
{printf("%s\n","恭喜小明可以参加校篮球队");
}
else (height<180)
{printf("%s\n","对不起不能参加");
}
return 0;
}
运行不了 你是根据什么下的这个”运行不了”的断言? else (height<180) 改成else 或 else if(height<180) 试试 if语句有两种方式:
if(code)
{
code;
}
else
{
code;
}
或者
if(code)
{
code;
}
else if(code)
{
code;
}
你好好看看书上是怎么写的
else跟的是小括号还是大括号!!
页:
[1]